Support for additional mathematical functions.
This commit is contained in:
parent
cf022ab68d
commit
52bdd4b59f
14 changed files with 436 additions and 79 deletions
|
|
@ -56,15 +56,15 @@ func (e *expressionInterfaceImpl) DESC() orderByClause {
|
|||
}
|
||||
|
||||
func (e *expressionInterfaceImpl) serializeForGroupBy(statement statementType, out *queryData) error {
|
||||
return e.parent.serialize(statement, out)
|
||||
return e.parent.serialize(statement, out, NO_WRAP)
|
||||
}
|
||||
|
||||
func (e *expressionInterfaceImpl) serializeForProjection(statement statementType, out *queryData) error {
|
||||
return e.parent.serialize(statement, out)
|
||||
return e.parent.serialize(statement, out, NO_WRAP)
|
||||
}
|
||||
|
||||
func (e *expressionInterfaceImpl) serializeAsOrderBy(statement statementType, out *queryData) error {
|
||||
return e.parent.serialize(statement, out)
|
||||
return e.parent.serialize(statement, out, NO_WRAP)
|
||||
}
|
||||
|
||||
// Representation of binary operations (e.g. comparisons, arithmetic)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue