1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

sql_update.cc:

Fixed bug #28716: additional patch to eliminate compilation
  error under Windows.
This commit is contained in:
gshchepa/uchum@gleb.loc
2007-05-30 16:39:25 +05:00
parent 0362400f31
commit 64ff9e4d6f

View File

@ -1529,8 +1529,9 @@ int multi_update::do_updates(bool from_send_error)
uint field_num= 0;
do
{
if((local_error= tbl->file->rnd_pos(tbl->record[0],
tmp_table->field[field_num]->ptr)))
if((local_error=
tbl->file->rnd_pos(tbl->record[0],
(byte *) tmp_table->field[field_num]->ptr)))
goto err;
field_num++;
} while((tbl= check_opt_it++));