MCPcopy Create free account
hub / github.com/cockroachdb/cockroachdb-parser / BinaryExpr

Struct BinaryExpr

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

BinaryExpr represents a binary value expression.

Source from the content-addressed store, hash-verified

1064
1065// BinaryExpr represents a binary value expression.
1066type BinaryExpr struct {
1067 Operator treebin.BinaryOperator
1068 Left, Right Expr
1069
1070 typeAnnotation
1071 Op *BinOp
1072}
1073
1074// TypedLeft returns the BinaryExpr's left expression as a TypedExpr.
1075func (node *BinaryExpr) TypedLeft() TypedExpr {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected