diff options
author | bell@sanja.is.com.ua <> | 2005-07-28 22:39:11 +0300 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2005-07-28 22:39:11 +0300 |
commit | b220fc47efcfe4a534b16c5c806d32f080cb40ec (patch) | |
tree | e93bc8d2975b833cb357ca7658f47ed7c4100ac2 /sql/parse_file.h | |
parent | c1c504abf4501dfbdcaeedbeb70cc59c26961795 (diff) | |
download | mariadb-git-b220fc47efcfe4a534b16c5c806d32f080cb40ec.tar.gz |
store/restore sql_mode which was in force during ctrigger creation (BUG#5891)
other sql_mode fixes
Diffstat (limited to 'sql/parse_file.h')
-rw-r--r-- | sql/parse_file.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sql/parse_file.h b/sql/parse_file.h index 82a89dffd18..cc0aa6556f6 100644 --- a/sql/parse_file.h +++ b/sql/parse_file.h @@ -27,8 +27,10 @@ enum file_opt_type { FILE_OPTIONS_REV, /* Revision version number (ulonglong) */ FILE_OPTIONS_TIMESTAMP, /* timestamp (LEX_STRING have to be allocated with length 20 (19+1) */ - FILE_OPTIONS_STRLIST /* list of escaped strings + FILE_OPTIONS_STRLIST, /* list of escaped strings (List<LEX_STRING>) */ + FILE_OPTIONS_ULLLIST /* list of ulonglong values + (List<ulonglong>) */ }; struct File_option |