TypedRight returns the ComparisonExpr's right expression as a TypedExpr.
()
| 537 | |
| 538 | // TypedRight returns the ComparisonExpr's right expression as a TypedExpr. |
| 539 | func (node *ComparisonExpr) TypedRight() TypedExpr { |
| 540 | return node.Right.(TypedExpr) |
| 541 | } |
| 542 | |
| 543 | // RangeCond represents a BETWEEN [SYMMETRIC] or a NOT BETWEEN [SYMMETRIC] |
| 544 | // expression. |