diff options
author | Adam Chlipala <adamc@hcoop.net> | 2010-04-01 17:21:16 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2010-04-01 17:21:16 -0400 |
commit | 5426959c49c3eeb40f6aac7595d91b867b4e4417 (patch) | |
tree | 640b653b8f73d907847dbf5887f47484ce9f0255 /src/postgres.sml | |
parent | 163747f5d60201ae83f2e57b72ee5d32b247cae5 (diff) |
Relational operators portability
Diffstat (limited to 'src/postgres.sml')
-rw-r--r-- | src/postgres.sml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/postgres.sml b/src/postgres.sml index a3f33db1..8541ca4a 100644 --- a/src/postgres.sml +++ b/src/postgres.sml @@ -951,7 +951,9 @@ val () = addDbms {name = "postgres", sqlPrefix = "", supportsOctetLength = true, trueString = "TRUE", - falseString = "FALSE"} + falseString = "FALSE", + onlyUnion = false, + nestedRelops = true} val () = setDbms "postgres" |