MCPcopy Create free account
hub / github.com/dolthub/doltgresql / ComparisonExpr

Struct ComparisonExpr

postgres/parser/sem/tree/expr.go:483–492  ·  view source on GitHub ↗

ComparisonExpr represents a two-value comparison expression.

Source from the content-addressed store, hash-verified

481
482// ComparisonExpr represents a two-value comparison expression.
483type ComparisonExpr struct {
484 Operator ComparisonOperator
485 SubOperator ComparisonOperator // used for array operators (when Operator is Any, Some, or All)
486 Left, Right Expr
487 // Schema is only set when using the OPERATOR() syntax
488 Schema Name
489
490 typeAnnotation
491 Fn *CmpOp
492}
493
494func (*ComparisonExpr) operatorExpr() {}
495

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected