Time, Timez, Timestamp, Timestampz, Date column types added.
This commit is contained in:
parent
7b89caa7e0
commit
7f5ba98819
20 changed files with 620 additions and 60 deletions
|
|
@ -5,6 +5,9 @@ type stringExpression interface {
|
|||
|
||||
EQ(rhs stringExpression) boolExpression
|
||||
NOT_EQ(rhs stringExpression) boolExpression
|
||||
IS_DISTINCT_FROM(rhs stringExpression) boolExpression
|
||||
IS_NOT_DISTINCT_FROM(rhs stringExpression) boolExpression
|
||||
|
||||
LT(rhs stringExpression) boolExpression
|
||||
LT_EQ(rhs stringExpression) boolExpression
|
||||
GT(rhs stringExpression) boolExpression
|
||||
|
|
@ -23,6 +26,14 @@ func (s *stringInterfaceImpl) NOT_EQ(rhs stringExpression) boolExpression {
|
|||
return NOT_EQ(s.parent, rhs)
|
||||
}
|
||||
|
||||
func (s *stringInterfaceImpl) IS_DISTINCT_FROM(rhs stringExpression) boolExpression {
|
||||
return IS_DISTINCT_FROM(s.parent, rhs)
|
||||
}
|
||||
|
||||
func (s *stringInterfaceImpl) IS_NOT_DISTINCT_FROM(rhs stringExpression) boolExpression {
|
||||
return IS_NOT_DISTINCT_FROM(s.parent, rhs)
|
||||
}
|
||||
|
||||
func (s *stringInterfaceImpl) GT(rhs stringExpression) boolExpression {
|
||||
return GT(s.parent, rhs)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue