diff options
author | Igor Babaev <igor@askmonty.org> | 2016-02-19 23:20:09 -0800 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2016-02-19 23:20:09 -0800 |
commit | 0c6d753708dfe07607ab6879b4832fe6ec5ddefb (patch) | |
tree | 10a23e5748f09d2a13ea934d107cb2fa8ed0e6a8 /sql/item_windowfunc.h | |
parent | be15858245fc7c23ba14e26d4cead6f7312711dd (diff) | |
download | mariadb-git-0c6d753708dfe07607ab6879b4832fe6ec5ddefb.tar.gz |
Fixed a problems in the parser.
Resolved window names.
Checked some constraints for window frames.
Added test cases for window name resolution.
Diffstat (limited to 'sql/item_windowfunc.h')
-rw-r--r-- | sql/item_windowfunc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/item_windowfunc.h b/sql/item_windowfunc.h index 5e5d3bf36ed..e9a2d6936f2 100644 --- a/sql/item_windowfunc.h +++ b/sql/item_windowfunc.h @@ -386,6 +386,9 @@ public: const char* func_name() const { return "WF"; } bool fix_fields(THD *thd, Item **ref); + + bool resolve_window_name(THD *thd); + }; |