diff options
Diffstat (limited to 'sql/sql_lex.h')
-rw-r--r-- | sql/sql_lex.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/sql_lex.h b/sql/sql_lex.h index e4fd6f42a48..59278b80ec4 100644 --- a/sql/sql_lex.h +++ b/sql/sql_lex.h @@ -2286,6 +2286,13 @@ struct LEX: public Query_tables_list List<Key_part_spec> col_list; List<Key_part_spec> ref_list; + /* + A list of strings is maintained to store the SET clause command user strings + which are specified in load data operation. This list will be used + during the reconstruction of "load data" statement at the time of writing + to binary log. + */ + List<String> load_set_str_list; List<String> interval_list; List<LEX_USER> users_list; List<LEX_COLUMN> columns; |