diff options
author | unknown <Sinisa@sinisa.nasamreza.org> | 2001-07-22 13:25:56 +0300 |
---|---|---|
committer | unknown <Sinisa@sinisa.nasamreza.org> | 2001-07-22 13:25:56 +0300 |
commit | 309b11234497dd41b8001f51adbb52e6ace442f0 (patch) | |
tree | df7d7382d512ecb79a70142d63ac04fd70727b53 /sql/sql_lex.h | |
parent | b588c6064638bd9245871cd840695854c1454e8b (diff) | |
download | mariadb-git-309b11234497dd41b8001f51adbb52e6ace442f0.tar.gz |
UNIONs : further work
sql/sql_lex.h:
Addition for UNION ALL
sql/sql_parse.cc:
Init for UNION ALL
sql/sql_unions.cc:
Bug fixes in UNION's
sql/sql_yacc.yy:
UNION ALL
Diffstat (limited to 'sql/sql_lex.h')
-rw-r--r-- | sql/sql_lex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_lex.h b/sql/sql_lex.h index 3b75eb3db71..627c1a23de3 100644 --- a/sql/sql_lex.h +++ b/sql/sql_lex.h @@ -180,7 +180,7 @@ typedef struct st_lex { enum enum_ha_read_modes ha_read_mode; enum ha_rkey_function ha_rkey_mode; enum enum_enable_or_disable alter_keys_onoff; - uint grant,grant_tot_col,which_columns; + uint grant,grant_tot_col,which_columns, union_option; thr_lock_type lock_option; bool drop_primary,drop_if_exists,local_file; bool in_comment,ignore_space,verbose,simple_alter, option_type; |