diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2018-11-08 09:50:56 +0200 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2018-11-08 10:19:55 +0200 |
commit | c761b43451d54eeeecdf3c102906fcce88d4e9d9 (patch) | |
tree | c00b07bf4b36108f1ecbfc3015b5594899e0e248 /sql/sql_cte.cc | |
parent | 07e4853c232726a639b30d4718bef9914ea42d24 (diff) | |
parent | bac2ec3a5b28ed590826b20a4cf27fd788903bbd (diff) | |
download | mariadb-git-c761b43451d54eeeecdf3c102906fcce88d4e9d9.tar.gz |
Merge 10.3 into 10.4mariadb-10.4.0
Diffstat (limited to 'sql/sql_cte.cc')
-rw-r--r-- | sql/sql_cte.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_cte.cc b/sql/sql_cte.cc index a1af2b6ebbb..c89f49aaefc 100644 --- a/sql/sql_cte.cc +++ b/sql/sql_cte.cc @@ -1286,7 +1286,7 @@ bool With_element::check_unrestricted_recursive(st_select_lex *sel, With_element *with_elem= unit->with_element; if (encountered & with_elem->get_elem_map()) unrestricted|= with_elem->mutually_recursive; - else + else if (with_elem ==this) encountered|= with_elem->get_elem_map(); } } |