diff options
author | Oleksandr Byelkin <sanja@mariadb.com> | 2022-08-10 12:24:31 +0200 |
---|---|---|
committer | Oleksandr Byelkin <sanja@mariadb.com> | 2022-08-10 12:24:31 +0200 |
commit | 1ac0bce36e5bf2136cedb1ce1da949f53cce4404 (patch) | |
tree | 7b81481b201c4e64aaa4a70411d992e0fac2289d /sql/sql_class.h | |
parent | 3b071bad1981a12e76769cbfc31b62fbd7362372 (diff) | |
parent | 65e8506ca9d03967191b6ed207cf107d311f7f99 (diff) | |
download | mariadb-git-1ac0bce36e5bf2136cedb1ce1da949f53cce4404.tar.gz |
Merge branch '10.4' into 10.5mariadb-10.5.17
Diffstat (limited to 'sql/sql_class.h')
-rw-r--r-- | sql/sql_class.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sql/sql_class.h b/sql/sql_class.h index 3d1848a2db9..87bca3a5f5f 100644 --- a/sql/sql_class.h +++ b/sql/sql_class.h @@ -6212,10 +6212,12 @@ class select_union_recursive :public select_unit or for the unit specifying a CTE that mutually recursive with this CTE. */ uint cleanup_count; + long row_counter; select_union_recursive(THD *thd_arg): select_unit(thd_arg), - incr_table(0), first_rec_table_to_update(0), cleanup_count(0) + incr_table(0), first_rec_table_to_update(0), cleanup_count(0), + row_counter(0) { incr_table_param.init(); }; int send_data(List<Item> &items); |