diff options
author | unknown <holyfoot/hf@hfmain.(none)> | 2007-06-25 14:28:30 +0500 |
---|---|---|
committer | unknown <holyfoot/hf@hfmain.(none)> | 2007-06-25 14:28:30 +0500 |
commit | 7a310d32344d97b265bfffdc89897b6727e45b97 (patch) | |
tree | 92ebe1a8c370f4ac63a8cf0804e3d98447a08cf3 /sql/sql_partition.cc | |
parent | 475a08a2f77092781539fc013255f0aab62ca5dd (diff) | |
parent | 50563d39309ba82448a31f6a98e40181422f5147 (diff) | |
download | mariadb-git-7a310d32344d97b265bfffdc89897b6727e45b97.tar.gz |
Merge bk@192.168.21.1:mysql-5.1-opt
into mysql.com:/home/hf/work/27084/my51-27084
sql/item_cmpfunc.cc:
Auto merged
sql/item_cmpfunc.h:
Auto merged
sql/sql_partition.h:
Auto merged
sql/table.cc:
Auto merged
mysql-test/r/partition.result:
merging
mysql-test/t/partition.test:
merging
sql/sql_partition.cc:
SCCS merged
Diffstat (limited to 'sql/sql_partition.cc')
-rw-r--r-- | sql/sql_partition.cc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sql/sql_partition.cc b/sql/sql_partition.cc index 407a0b3dcf2..ad3cf2d3e7a 100644 --- a/sql/sql_partition.cc +++ b/sql/sql_partition.cc @@ -3663,6 +3663,8 @@ void get_partition_set(const TABLE *table, uchar *buf, const uint index, table Table object of partitioned table create_table_ind Is it called from CREATE TABLE default_db_type What is the default engine of the table + work_part_info_used Flag is raised if we don't create new + part_info, but used thd->work_part_info RETURN VALUE TRUE Error @@ -3683,7 +3685,8 @@ bool mysql_unpack_partition(THD *thd, const char *part_buf, uint part_info_len, const char *part_state, uint part_state_len, TABLE* table, bool is_create_table_ind, - handlerton *default_db_type) + handlerton *default_db_type, + bool *work_part_info_used) { bool result= TRUE; partition_info *part_info; @@ -3698,6 +3701,7 @@ bool mysql_unpack_partition(THD *thd, Lex_input_stream lip(thd, part_buf, part_info_len); lex_start(thd); + *work_part_info_used= false; /* We need to use the current SELECT_LEX since I need to keep the Name_resolution_context object which is referenced from the @@ -3782,6 +3786,7 @@ bool mysql_unpack_partition(THD *thd, thd->free_items(); part_info= thd->work_part_info; table->s->version= 0UL; + *work_part_info_used= true; } } table->part_info= part_info; |