| 515 | *****************************************************************************/ |
| 516 | |
| 517 | static int drop_table(handlerton *hton, const char *path) |
| 518 | { |
| 519 | const char *name= strrchr(path, FN_LIBCHAR)+1; |
| 520 | ulonglong from, to, step; |
| 521 | if (parse_table_name(name, strlen(name), &from, &to, &step)) |
| 522 | return ENOENT; |
| 523 | return 0; |
| 524 | } |
| 525 | |
| 526 | static int init(void *p) |
| 527 | { |
nothing calls this directly
no test coverage detected