diff options
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 163bc0b8..a178f086 100644 --- a/src/postgres.sml +++ b/src/postgres.sml @@ -893,7 +893,8 @@ val () = addDbms {name = "postgres", createSequence = fn s => "CREATE SEQUENCE " ^ s, textKeysNeedLengths = false, supportsNextval = true, - supportsNestedPrepared = true} + supportsNestedPrepared = true, + sqlPrefix = ""} val () = setDbms "postgres" |