mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Portability fix
Cleanup typos (like SKIPP -> SKIP)
This commit is contained in:
@ -368,12 +368,12 @@ int write_record(TABLE *table,COPY_INFO *info)
|
||||
{
|
||||
while ((error=table->file->write_row(table->record[0])))
|
||||
{
|
||||
if (error != HA_WRITE_SKIPP)
|
||||
if (error != HA_WRITE_SKIP)
|
||||
goto err;
|
||||
uint key_nr;
|
||||
if ((int) (key_nr = table->file->get_dup_key(error)) < 0)
|
||||
{
|
||||
error=HA_WRITE_SKIPP; /* Database can't find key */
|
||||
error=HA_WRITE_SKIP; /* Database can't find key */
|
||||
goto err;
|
||||
}
|
||||
/*
|
||||
|
Reference in New Issue
Block a user