• Sergei Golubchik's avatar
    MDEV-11741 handler::ha_reset(): Assertion... · bd5cf02b
    Sergei Golubchik authored
    MDEV-11741 handler::ha_reset(): Assertion `bitmap_is_set_all(&table->s->all_set)' failed or server crash in mi_reset or buffer overrun or unexpected ER_CANT_REMOVE_ALL_FIELDS
    
    MEMORY table could be renamed into a non-extistent database.
    
    rename() is documented to return ENOENT when the source file does not
    exist OR when the target directory not exist. Nonexistent source .frm
    file is ok (table can still exist in the engine), nonexistent target
    directory is not.
    
    Make my_rename to use ENOTDIR for the latter case. Make RENAME TABLE
    issue an appropriate error ("unknown database" instead of "unknown table")
    bd5cf02b
my_rename.c 2.03 KB