isDistinct check if DISTINCT quantifier is set
(setQuantifier antlrgen.ISetQuantifierContext)
| 1673 | |
| 1674 | // isDistinct check if DISTINCT quantifier is set |
| 1675 | func (v *ASTBuilder) isDistinct(setQuantifier antlrgen.ISetQuantifierContext) bool { |
| 1676 | if setQuantifier != nil && setQuantifier.(*antlrgen.SetQuantifierContext).DISTINCT() != nil { |
| 1677 | return true |
| 1678 | } |
| 1679 | |
| 1680 | return false |
| 1681 | } |
| 1682 | |
| 1683 | // getLogicalBinaryOperator returns an input token's logicalBinaryExpression operator type |
| 1684 | func (v *ASTBuilder) getLogicalBinaryOperator(token int) tree.LogicalBinaryExpType { |
no test coverage detected