summaryrefslogtreecommitdiff
path: root/sql/sql_alter.h
diff options
context:
space:
mode:
Diffstat (limited to 'sql/sql_alter.h')
-rw-r--r--sql/sql_alter.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/sql_alter.h b/sql/sql_alter.h
index 88873477c7c..67c0a8bbd1e 100644
--- a/sql/sql_alter.h
+++ b/sql/sql_alter.h
@@ -20,6 +20,7 @@
class Alter_drop;
class Alter_column;
class Alter_rename_key;
+class Alter_index_ignorability;
class Key;
/**
@@ -95,6 +96,8 @@ public:
List<Alter_rename_key> alter_rename_key_list;
// List of columns, used by both CREATE and ALTER TABLE.
List<Create_field> create_list;
+ // Indexes whose ignorability needs to be changed.
+ List<Alter_index_ignorability> alter_index_ignorability_list;
enum flags_bits
{
@@ -134,6 +137,7 @@ public:
key_list.empty();
alter_rename_key_list.empty();
create_list.empty();
+ alter_index_ignorability_list.empty();
check_constraint_list.empty();
flags= 0;
partition_flags= 0;