comparison src/postgres.sml @ 890:034eeb099564

Blobs tested in MySQL and SQLite
author Adam Chlipala <adamc@hcoop.net>
date Sat, 18 Jul 2009 10:27:32 -0400
parents 5805fa825fe8
children 38a376dc7401
comparison
equal deleted inserted replaced
889:bcad392e288e 890:034eeb099564
893 supportsUpdateAs = true, 893 supportsUpdateAs = true,
894 createSequence = fn s => "CREATE SEQUENCE " ^ s, 894 createSequence = fn s => "CREATE SEQUENCE " ^ s,
895 textKeysNeedLengths = false, 895 textKeysNeedLengths = false,
896 supportsNextval = true, 896 supportsNextval = true,
897 supportsNestedPrepared = true, 897 supportsNestedPrepared = true,
898 sqlPrefix = ""} 898 sqlPrefix = "",
899 supportsOctetLength = true}
899 900
900 val () = setDbms "postgres" 901 val () = setDbms "postgres"
901 902
902 end 903 end