4473
4474
| LONG_NUM { int error; $$= (ulong) my_strtoll10($1.str, (char**) 0, &error); }
4474
4475
| ULONGLONG_NUM { int error; $$= (ulong) my_strtoll10($1.str, (char**) 0, &error); }
4475
4476
| dec_num_error { DRIZZLE_YYABORT; }
4479
4480
NUM { int error; $$= (uint64_t) my_strtoll10($1.str, (char**) 0, &error); }