diff options
author | Vicențiu Ciorbaru <vicentiu@mariadb.org> | 2015-06-25 08:33:15 +0300 |
---|---|---|
committer | Vicentiu Ciorbaru <vicentiu@mariadb.org> | 2015-07-13 16:01:25 +0000 |
commit | c64a3e9290db188c649f4c857352dcb34821d9f1 (patch) | |
tree | 28130ad44d06071bc8a4a3d73ff09b128d8cf752 /sql/sql_window.h | |
parent | 33745a407b3557f2914ebf8119e8ea3435481cde (diff) | |
download | mariadb-git-10.1-window.tar.gz |
Initial window func attempt10.1-window
Diffstat (limited to 'sql/sql_window.h')
-rw-r--r-- | sql/sql_window.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/sql_window.h b/sql/sql_window.h index b300c13136f..e6a6e6b1e3f 100644 --- a/sql/sql_window.h +++ b/sql/sql_window.h @@ -1,7 +1,7 @@ - #ifndef SQL_WINDOW_INCLUDED #define SQL_WINDOW_INCLUDED + #include "my_global.h" #include "item.h" @@ -9,7 +9,7 @@ class Window_frame_bound : public Sql_alloc { public: - + enum Bound_precedence_type { PRECEDING, @@ -25,7 +25,7 @@ public: class Window_frame : public Sql_alloc { - + public: enum Frame_units @@ -71,7 +71,7 @@ class Window_spec : public Sql_alloc Window_frame *window_frame; - Window_spec(LEX_STRING *win_ref, + Window_spec(LEX_STRING *win_ref, SQL_I_List<ORDER> part_list, SQL_I_List<ORDER> ord_list, Window_frame *win_frame) |