Helper: is token an aggregate function? */
| 1191 | |
| 1192 | /* Helper: is token an aggregate function? */ |
| 1193 | static bool is_aggregate_tok(cbm_token_type_t t) { |
| 1194 | return (t == TOK_COUNT || t == TOK_SUM || t == TOK_AVG || t == TOK_MIN_KW || t == TOK_MAX_KW || |
| 1195 | t == TOK_COLLECT) != 0; |
| 1196 | } |
| 1197 | |
| 1198 | /* Helper: is token a string function? */ |
| 1199 | static bool is_string_func_tok(cbm_token_type_t t) { |
no outgoing calls
no test coverage detected