diff options
author | unknown <heikki@hundin.mysql.fi> | 2002-11-19 16:27:26 +0200 |
---|---|---|
committer | unknown <heikki@hundin.mysql.fi> | 2002-11-19 16:27:26 +0200 |
commit | d050750f1fbcdf3d85413e95d77ee117db2d2571 (patch) | |
tree | fb129e1ba79439cc7f251922c03d245daf0c3b2c /sql/sql_table.cc | |
parent | 33d678fcdc2d0b431c0f08e11e0b6715cd37cda0 (diff) | |
download | mariadb-git-d050750f1fbcdf3d85413e95d77ee117db2d2571.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
sql/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
sql/sql_table.cc:
Fix crash when InnoDB temp table is truncated + fix bug: do not X-lock rows under LOCK TABLES except if the table is temp
sql/ha_innodb.cc:
Fix crash when InnoDB temp table is truncated + fix bug: do not X-lock rows under LOCK TABLES except if the table is temp
innobase/include/row0mysql.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
innobase/row/row0mysql.c:
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 'sql/sql_table.cc')
-rw-r--r-- | sql/sql_table.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sql/sql_table.cc b/sql/sql_table.cc index 1e7614ccc95..aa0946113c9 100644 --- a/sql/sql_table.cc +++ b/sql/sql_table.cc @@ -695,7 +695,6 @@ int mysql_create_table(THD *thd,const char *db, const char *table_name, thd->proc_info="creating table"; - create_info->create_statement = thd->query; create_info->table_options=db_options; if (rea_create_table(path, create_info, fields, key_count, key_info_buffer)) |