Lines Matching refs:set_token

68 void set_token(int tok, const char *str)  in set_token()  function
132 set_token(NEG, "~"); in compute_tokens()
133 set_token(TABLE_REF_PRIORITY, "TABLE_REF_PRIORITY"); in compute_tokens()
139 set_token(WITH_CUBE_SYM, "WITH CUBE"); in compute_tokens()
140 set_token(WITH_ROLLUP_SYM, "WITH ROLLUP"); in compute_tokens()
141 set_token(NOT2_SYM, "!"); in compute_tokens()
142 set_token(OR2_SYM, "|"); in compute_tokens()
143 set_token(PARAM_MARKER, "?"); in compute_tokens()
144 set_token(SET_VAR, ":="); in compute_tokens()
145 set_token(UNDERSCORE_CHARSET, "(_charset)"); in compute_tokens()
146 set_token(END_OF_INPUT, ""); in compute_tokens()
153 set_token(BIN_NUM, "(bin)"); in compute_tokens()
154 set_token(DECIMAL_NUM, "(decimal)"); in compute_tokens()
155 set_token(FLOAT_NUM, "(float)"); in compute_tokens()
156 set_token(HEX_NUM, "(hex)"); in compute_tokens()
157 set_token(LEX_HOSTNAME, "(hostname)"); in compute_tokens()
158 set_token(LONG_NUM, "(long)"); in compute_tokens()
159 set_token(NUM, "(num)"); in compute_tokens()
160 set_token(TEXT_STRING, "(text)"); in compute_tokens()
161 set_token(NCHAR_STRING, "(nchar)"); in compute_tokens()
162 set_token(ULONGLONG_NUM, "(ulonglong)"); in compute_tokens()
167 set_token(IDENT, "(id)"); in compute_tokens()
168 set_token(IDENT_QUOTED, "(id_quoted)"); in compute_tokens()
173 set_token(LOCATOR_SYM, "LOCATOR"); in compute_tokens()
174 set_token(SERVER_OPTIONS, "SERVER_OPTIONS"); in compute_tokens()
175 set_token(UDF_RETURNS_SYM, "UDF_RETURNS"); in compute_tokens()
182 set_token(symbols[i].tok, symbols[i].name); in compute_tokens()
190 set_token(sql_functions[i].tok, sql_functions[i].name); in compute_tokens()
200 set_token(tok_pfs_generic_value, "?"); in compute_tokens()
204 set_token(tok_pfs_generic_value_list, "?, ..."); in compute_tokens()
208 set_token(tok_pfs_row_single_value, "(?)"); in compute_tokens()
212 set_token(tok_pfs_row_single_value_list, "(?) /* , ... */"); in compute_tokens()
216 set_token(tok_pfs_row_multiple_value, "(...)"); in compute_tokens()
220 set_token(tok_pfs_row_multiple_value_list, "(...) /* , ... */"); in compute_tokens()
224 set_token(tok_pfs_unused, "UNUSED"); in compute_tokens()