sq/libsq/ast/render/operator.go
Neil O'Toole e93f462fff
#254: explicit where() clause (#255)
Implement explicit `where()` clause.
2023-06-16 22:54:25 -06:00

32 lines
573 B
Go

package render
import (
"github.com/neilotoole/sq/libsq/ast"
)
func doOperator(rc *Context, op *ast.OperatorNode) (string, error) {
if op == nil {
return "", nil
}
text := op.Text()
// Check if the dialect overrides the operator.
val, ok := rc.Dialect.Ops[text]
if !ok {
val = text
}
rhs := ast.NodeNextSibling(op)
if lit, ok := ast.NodeUnwrap[*ast.LiteralNode](rhs); ok && lit.Text() == "null" {
switch op.Text() {
case "==":
val = "IS"
case "!=":
val = "IS NOT"
}
}
// By default, just return the operator unchanged.
return val, nil
}