diff options
author | unknown <monty@mashka.mysql.fi> | 2002-09-03 16:28:01 +0300 |
---|---|---|
committer | unknown <monty@mashka.mysql.fi> | 2002-09-03 16:28:01 +0300 |
commit | 3307f95554d9bca2736d79b970c2f118c66a27ed (patch) | |
tree | 650f91f79bff10451cbe33bcc4e21fe27fd3916f /sql/mysql_priv.h | |
parent | 35115d9a509933f141ec835d5da7930233e9e3a3 (diff) | |
download | mariadb-git-3307f95554d9bca2736d79b970c2f118c66a27ed.tar.gz |
Fixed bug introduces by last changeset
(Fixing of problem with ALTER TABLE on BDB tables)
mysql-test/r/distinct.result:
Fixed results after bug fix
sql/mysql_priv.h:
Split close_thread_tables() into two functions.
(Needed for bug fix from 4.0)
sql/sql_base.cc:
Split close_thread_tables() into two functions.
(Needed for bug fix from 4.0)
Diffstat (limited to 'sql/mysql_priv.h')
-rw-r--r-- | sql/mysql_priv.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/mysql_priv.h b/sql/mysql_priv.h index 6b2721f4ab7..a5c2c3909d3 100644 --- a/sql/mysql_priv.h +++ b/sql/mysql_priv.h @@ -447,6 +447,7 @@ bool rm_temporary_table(enum db_type base, char *path); bool send_fields(THD *thd,List<Item> &item,uint send_field_count); void free_io_cache(TABLE *entry); void intern_close_table(TABLE *entry); +bool close_thread_table(THD *thd, TABLE **table_ptr); void close_thread_tables(THD *thd,bool locked=0); void close_temporary_tables(THD *thd); TABLE **find_temporary_table(THD *thd, const char *db, const char *table_name); |