summaryrefslogtreecommitdiff
path: root/sql/sql_window.h
diff options
context:
space:
mode:
authorVicențiu Ciorbaru <vicentiu@mariadb.org>2016-03-28 16:57:41 +0300
committerVicențiu Ciorbaru <vicentiu@mariadb.org>2016-03-28 22:51:42 +0300
commitbf18dac08fe0ae18975158e786fee097883949d4 (patch)
tree80efd0ffc352d43cf6496be28c125e08da605048 /sql/sql_window.h
parent44fdb56c977259b2801c612116813beda403df78 (diff)
downloadmariadb-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.h2
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 */