diff options
author | Adam Chlipala <adam@chlipala.net> | 2012-06-02 16:47:09 -0400 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2012-06-02 16:47:09 -0400 |
commit | 858481a426ea3873440c3bed30eb563f8cf3480e (patch) | |
tree | 16d85bb575a9248e5c830e757a822240f8fa04ff /src/postgres.sml | |
parent | 8b6941ac380392e36a30a06fb558c47a8fe7d2d8 (diff) |
Partitioning and ordering for window functions
Diffstat (limited to 'src/postgres.sml')
-rw-r--r-- | src/postgres.sml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/postgres.sml b/src/postgres.sml index db9c9d3a..e555c565 100644 --- a/src/postgres.sml +++ b/src/postgres.sml @@ -1063,7 +1063,8 @@ val () = addDbms {name = "postgres", trueString = "TRUE", falseString = "FALSE", onlyUnion = false, - nestedRelops = true} + nestedRelops = true, + windowFunctions = true} val () = setDbms "postgres" |