diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-07-16 13:59:30 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-07-16 13:59:30 -0400 |
commit | 7e10920b75383cd953898468385ae29e76bf184d (patch) | |
tree | ab868a5482914e1edd50ddce3be30c1a02a19de7 /src/postgres.sml | |
parent | 662c635acece462b9a3d8f95f30716f9904b5ad5 (diff) |
MySQL accepts generated demo DDL
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 7096a5cf..26825363 100644 --- a/src/postgres.sml +++ b/src/postgres.sml @@ -860,7 +860,9 @@ val () = addDbms {name = "postgres", sqlifyString = sqlifyString, p_cast = p_cast, p_blank = p_blank, - supportsDeleteAs = true} + supportsDeleteAs = true, + createSequence = fn s => "CREATE SEQUENCE " ^ s, + textKeysNeedLengths = false} val () = setDbms "postgres" |