Implement ntile window function.

The current implementation does not allow for a dynamic expression
within the sum function's parameter.
This commit is contained in:
Vicențiu Ciorbaru 2016-04-04 17:06:12 +03:00
commit be3902fceb
8 changed files with 588 additions and 1 deletions

View file

@ -7184,3 +7184,5 @@ ER_FRAME_EXCLUSION_NOT_SUPPORTED
eng "Frame exclusion is not supported yet"
ER_WINDOW_FUNCTION_DONT_HAVE_FRAME
eng "This window function may not have a window frame"
ER_INVALID_NTILE_ARGUMENT
eng "Argument of NTILE must be greater than 0"