diff options
author | heikki@hundin.mysql.fi <> | 2002-11-19 16:27:26 +0200 |
---|---|---|
committer | heikki@hundin.mysql.fi <> | 2002-11-19 16:27:26 +0200 |
commit | 4b73222d5a0a52864cf700e9acc98fe074176e43 (patch) | |
tree | fb129e1ba79439cc7f251922c03d245daf0c3b2c /innobase/row/row0mysql.c | |
parent | f9e6ae6f42bb4321639ec40c622c394d79d17661 (diff) | |
download | mariadb-git-4b73222d5a0a52864cf700e9acc98fe074176e43.tar.gz |
row0mysql.c, row0mysql.h, ha_innodb.cc, sql_table.cc, handler.h:
Fix crash when InnoDB temp table is truncated + fix bug: do not X-lock rows under LOCK TABLES except if the table is temp
Diffstat (limited to 'innobase/row/row0mysql.c')
-rw-r--r-- | innobase/row/row0mysql.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/innobase/row/row0mysql.c b/innobase/row/row0mysql.c index f228a75ad3a..9ce86b5d487 100644 --- a/innobase/row/row0mysql.c +++ b/innobase/row/row0mysql.c @@ -320,6 +320,8 @@ row_create_prebuilt( prebuilt->sql_stat_start = TRUE; + prebuilt->mysql_has_locked = FALSE; + prebuilt->index = NULL; prebuilt->n_template = 0; prebuilt->mysql_template = NULL; |