diff options
author | Oleksandr Byelkin <sanja@mariadb.com> | 2018-07-05 17:49:44 +0200 |
---|---|---|
committer | Oleksandr Byelkin <sanja@mariadb.com> | 2018-07-05 17:49:44 +0200 |
commit | cd41d376d413d066f3d497a67d039515fd385a1c (patch) | |
tree | 91a66b34547ce89dc922b6e8380fe0ad14d4e20f /sql/sql_prepare.cc | |
parent | 1748a31ae8d69e4939336f644f884e9de3039e7f (diff) | |
download | mariadb-git-bb-10.3-MDEV-16697.tar.gz |
MDEV-16697: Fix difference between 32bit/windows and 64bit systems in allowed select nest levelbb-10.3-MDEV-16697
Diffstat (limited to 'sql/sql_prepare.cc')
-rw-r--r-- | sql/sql_prepare.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_prepare.cc b/sql/sql_prepare.cc index fd526f9a660..0e6b24a7a11 100644 --- a/sql/sql_prepare.cc +++ b/sql/sql_prepare.cc @@ -3028,7 +3028,7 @@ void reinit_stmt_before_use(THD *thd, LEX *lex) lex->result->cleanup(); lex->result->set_thd(thd); } - lex->allow_sum_func= 0; + lex->allow_sum_func.clear_all(); lex->in_sum_func= NULL; DBUG_VOID_RETURN; } |