Parse DISTINCT qualifier: DISTINCT | ALL
(tokens: &[Token])
| 1047 | |
| 1048 | /// Parse DISTINCT qualifier: DISTINCT | ALL |
| 1049 | fn distinct_qualifier(tokens: &[Token]) -> IResult<&[Token], DistinctQualifier> { |
| 1050 | alt(( |
| 1051 | value(DistinctQualifier::Distinct, expect_token(Token::Distinct)), |
| 1052 | value(DistinctQualifier::All, expect_token(Token::All)), |
| 1053 | ))(tokens) |
| 1054 | } |
| 1055 | |
| 1056 | /// Parse CALL statement: CALL procedure_name(args...) [YIELD ...] [WHERE ...] |
| 1057 | /// NOTE: WHERE on CALL is a GraphLite extension (not in ISO GQL standard) |
nothing calls this directly
no test coverage detected