1
Fork 0

add window functions to the keyword parser hack so they work, bug

This commit is contained in:
Jake Wheat 2019-07-07 13:08:02 +01:00
parent e54cfee62b
commit 8e9b9edd0c
2 changed files with 13 additions and 1 deletions
Language/SQL/SimpleSQL

View file

@ -791,6 +791,18 @@ all the scalar expressions which start with an identifier
> ,"var_pop"
> ,"var_samp"
> ,"width_bucket"
> -- window functions added here too
> ,"row_number"
> ,"rank"
> ,"dense_rank"
> ,"percent_rank"
> ,"cume_dist"
> ,"ntile"
> ,"lead"
> ,"lag"
> ,"first_value"
> ,"last_value"
> ,"nth_value"
> ]