diff options
author | unknown <serg@serg.mylan> | 2004-03-23 14:43:24 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-03-23 14:43:24 +0100 |
commit | c0a9df1aaedc4a44299398b858021d49ccbfd2ea (patch) | |
tree | 303d154fcdcdeb732e85c89c418f9b45836d801e /sql/sql_lex.h | |
parent | 78b4ba746b79ea7d89044e3eecd56338a8f4eb6f (diff) | |
download | mariadb-git-c0a9df1aaedc4a44299398b858021d49ccbfd2ea.tar.gz |
correct support for a mix of UNION/UNION ALL in the same query.
Bug#1428
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 ba8fe0d8792..b9d85a23011 100644 --- a/sql/sql_lex.h +++ b/sql/sql_lex.h @@ -335,7 +335,7 @@ public: /* fake SELECT_LEX for union processing */ st_select_lex *fake_select_lex; - uint union_option; + st_select_lex *union_distinct; /* pointer to the last UNION DISTINCT */ void init_query(); bool create_total_list(THD *thd, st_lex *lex, TABLE_LIST **result); |