mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
BUG#17754
Added new syntax ALTER TABLE t1 REMOVE PARTITIONING, changed semantics of ALTER TABLE t1 ENGINE=X; to not remove partitioning Fix a number of mix engine bugs in partitioning mysql-test/r/ndb_partition_key.result: Added a number of new test cases mysql-test/r/partition.result: Added a number of new test cases mysql-test/t/ndb_partition_key.test: Added a number of new test cases mysql-test/t/partition.test: Added a number of new test cases sql/lex.h: REMOVE and PARTITIONING added as keywords in parser sql/sql_lex.h: Added flag to alter_info flag sql/sql_partition.cc: Fixes for the new syntax, changes of the current semantics of the syntax. Fixes for errors in handling mixes of table handlers in partitioning syntax for ALTER TABLE sql/sql_table.cc: Bug fix sql/sql_yacc.yy: New syntax for REMOVE PARTITIONING
This commit is contained in:
@ -696,6 +696,7 @@ typedef class st_select_lex SELECT_LEX;
|
||||
#define ALTER_ANALYZE_PARTITION (1L << 22)
|
||||
#define ALTER_CHECK_PARTITION (1L << 23)
|
||||
#define ALTER_REPAIR_PARTITION (1L << 24)
|
||||
#define ALTER_REMOVE_PARTITIONING (1L << 25)
|
||||
|
||||
typedef struct st_alter_info
|
||||
{
|
||||
|
Reference in New Issue
Block a user