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

Struct BinaryExpr

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

BinaryExpr represents a binary value expression.

Source from the content-addressed store, hash-verified

1165
1166// BinaryExpr represents a binary value expression.
1167type BinaryExpr struct {
1168 Operator BinaryOperator
1169 Left, Right Expr
1170 // Schema is only set for operators from a particular named schema using the OPERATOR() syntax
1171 Schema Name
1172
1173 typeAnnotation
1174 Fn *BinOp
1175}
1176
1177// TypedLeft returns the BinaryExpr's left expression as a TypedExpr.
1178func (node *BinaryExpr) TypedLeft() TypedExpr {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected