diff options
author | Vicențiu Ciorbaru <vicentiu@mariadb.org> | 2016-03-28 16:57:41 +0300 |
---|---|---|
committer | Vicențiu Ciorbaru <vicentiu@mariadb.org> | 2016-03-28 22:51:42 +0300 |
commit | bf18dac08fe0ae18975158e786fee097883949d4 (patch) | |
tree | 80efd0ffc352d43cf6496be28c125e08da605048 /sql/sql_window.h | |
parent | 44fdb56c977259b2801c612116813beda403df78 (diff) | |
download | mariadb-git-bf18dac08fe0ae18975158e786fee097883949d4.tar.gz |
Lay the groundwork for variable number of cursors.
Instead of relying solely on top bound and bottom bound cursors,
now we create a list of cursors that are iterated over.
Diffstat (limited to 'sql/sql_window.h')
-rw-r--r-- | sql/sql_window.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_window.h b/sql/sql_window.h index 4c88a49b6b9..910a8fcc0c1 100644 --- a/sql/sql_window.h +++ b/sql/sql_window.h @@ -150,7 +150,7 @@ typedef bool (*window_compute_func_t)(Item_window_func *item_win, Currently, we make a spearate filesort() call for each window function. */ -class Window_func_runner : public Sql_alloc +class Window_func_runner : public Sql_alloc { Item_window_func *win_func; /* Window function can be computed over this sorting */ |