X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=sql%2Fgeneric-postgresql.lisp;h=2464746f11c9b4a2de764487a88cc68c5089858f;hb=529452ae19c763cb1ed262e13bb589a8b6614e35;hp=13d4f7714d1445c10be31cdf5b267b9310f73de3;hpb=868477640206e55887d5c017d1e47a58ef64dc47;p=clsql.git diff --git a/sql/generic-postgresql.lisp b/sql/generic-postgresql.lisp index 13d4f77..2464746 100644 --- a/sql/generic-postgresql.lisp +++ b/sql/generic-postgresql.lisp @@ -25,8 +25,10 @@ "Special database types for POSTGRESQL backends" (declare (ignore database db-type)) (case type - (wall-time ;; TODO: why is this WITHOUT... - "TIMESTAMP WITHOUT TIME ZONE") + ;; his used to be without because we didnt track timezones well + ;; Now we do, so it should include them + (wall-time + "TIMESTAMP WITH TIME ZONE") (string ;; TODO: the default to CHAR here seems specious as the PG docs claim ;; that char is slower than varchar