mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 10:14:19 +01:00
Deprecate RAID create options
This commit is contained in:
parent
fbcf26777e
commit
1d860c2dbe
1 changed files with 15 additions and 3 deletions
|
@ -2669,9 +2669,21 @@ create_table_option:
|
|||
| CHECKSUM_SYM opt_equal ulong_num { Lex->create_info.table_options|= $3 ? HA_OPTION_CHECKSUM : HA_OPTION_NO_CHECKSUM; Lex->create_info.used_fields|= HA_CREATE_USED_CHECKSUM; }
|
||||
| DELAY_KEY_WRITE_SYM opt_equal ulong_num { Lex->create_info.table_options|= $3 ? HA_OPTION_DELAY_KEY_WRITE : HA_OPTION_NO_DELAY_KEY_WRITE; Lex->create_info.used_fields|= HA_CREATE_USED_DELAY_KEY_WRITE; }
|
||||
| ROW_FORMAT_SYM opt_equal row_types { Lex->create_info.row_type= $3; Lex->create_info.used_fields|= HA_CREATE_USED_ROW_FORMAT; }
|
||||
| RAID_TYPE opt_equal raid_types { Lex->create_info.raid_type= $3; Lex->create_info.used_fields|= HA_CREATE_USED_RAID;}
|
||||
| RAID_CHUNKS opt_equal ulong_num { Lex->create_info.raid_chunks= $3; Lex->create_info.used_fields|= HA_CREATE_USED_RAID;}
|
||||
| RAID_CHUNKSIZE opt_equal ulong_num { Lex->create_info.raid_chunksize= $3*RAID_BLOCK_SIZE; Lex->create_info.used_fields|= HA_CREATE_USED_RAID;}
|
||||
| RAID_TYPE opt_equal raid_types
|
||||
{
|
||||
my_error(ER_WARN_DEPRECATED_SYNTAX, MYF(0), "RAID_TYPE", "PARTITION");
|
||||
YYABORT;
|
||||
}
|
||||
| RAID_CHUNKS opt_equal ulong_num
|
||||
{
|
||||
my_error(ER_WARN_DEPRECATED_SYNTAX, MYF(0), "RAID_CHUNKS", "PARTITION");
|
||||
YYABORT;
|
||||
}
|
||||
| RAID_CHUNKSIZE opt_equal ulong_num
|
||||
{
|
||||
my_error(ER_WARN_DEPRECATED_SYNTAX, MYF(0), "RAID_CHUNKSIZE", "PARTITION");
|
||||
YYABORT;
|
||||
}
|
||||
| UNION_SYM opt_equal '(' table_list ')'
|
||||
{
|
||||
/* Move the union list to the merge_list */
|
||||
|
|
Loading…
Add table
Reference in a new issue