| 358 | |
| 359 | |
| 360 | static int discover_table_existence(handlerton *hton, const char *db, |
| 361 | const char *table_name) |
| 362 | { |
| 363 | ulonglong from, to, step; |
| 364 | return !parse_table_name(table_name, strlen(table_name), &from, &to, &step); |
| 365 | } |
| 366 | |
| 367 | /***************************************************************************** |
| 368 | Example of a simple group by handler for queries like: |
nothing calls this directly
no test coverage detected