MCPcopy Create free account
hub / github.com/auxten/postgresql-parser / ComparisonExpr

Struct ComparisonExpr

pkg/sql/sem/tree/expr.go:411–418  ·  view source on GitHub ↗

ComparisonExpr represents a two-value comparison expression.

Source from the content-addressed store, hash-verified

409
410// ComparisonExpr represents a two-value comparison expression.
411type ComparisonExpr struct {
412 Operator ComparisonOperator
413 SubOperator ComparisonOperator // used for array operators (when Operator is Any, Some, or All)
414 Left, Right Expr
415
416 typeAnnotation
417 fn *CmpOp
418}
419
420func (*ComparisonExpr) operatorExpr() {}
421

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected