diff options
author | unknown <pappa@c-1309e253.1238-1-64736c10.cust.bredbandsbolaget.se> | 2005-09-20 10:29:59 -0400 |
---|---|---|
committer | unknown <pappa@c-1309e253.1238-1-64736c10.cust.bredbandsbolaget.se> | 2005-09-20 10:29:59 -0400 |
commit | 11c503567fdcc2a0802d258f10b31ea3dc551a4c (patch) | |
tree | ff9cb1040cb11af3e0461561f0663a7d2d0b4922 /sql/handler.h | |
parent | 8204f6906752d07b345459b408c53b9ab0b30fbb (diff) | |
download | mariadb-git-11c503567fdcc2a0802d258f10b31ea3dc551a4c.tar.gz |
Handle default engine type better for
partitioned tables
mysql-test/r/partition.result:
New test cases for SHOW CREATE TABLE
mysql-test/r/partition_range.result:
New test cases for SHOW CREATE TABLE
mysql-test/t/partition.test:
New test cases for SHOW CREATE TABLE
mysql-test/t/partition_range.test:
New test cases for SHOW CREATE TABLE
sql/handler.h:
Handle default engine type better
sql/sql_partition.cc:
Handle default engine type better
sql/sql_show.cc:
Handle default engine type better
sql/sql_table.cc:
Handle default engine type better
sql/sql_yacc.yy:
Handle default engine type better
sql/table.cc:
Handle default engine type better
sql/unireg.cc:
Handle default engine type better
Diffstat (limited to 'sql/handler.h')
-rw-r--r-- | sql/handler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/handler.h b/sql/handler.h index 86d96ede4dd..bd935da2a80 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -686,7 +686,7 @@ void get_full_part_id_from_key(const TABLE *table, byte *buf, const key_range *key_spec, part_id_range *part_spec); bool mysql_unpack_partition(File file, THD *thd, uint part_info_len, - TABLE *table); + TABLE *table, enum db_type default_db_type); #endif |