X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=sql%2Fobjects.lisp;h=cb158d296957b4aea192dd8859c0451ebf8fb388;hp=9598ea643d3172bf8acdd209be7fd443e42b52a6;hb=1dda729b250779079efbdc1d3f6bbb3ae4a20ba4;hpb=9711a224f9684aaaba08e20eaab826be1beee460 diff --git a/sql/objects.lisp b/sql/objects.lisp index 9598ea6..cb158d2 100644 --- a/sql/objects.lisp +++ b/sql/objects.lisp @@ -665,9 +665,9 @@ superclass of the newly-defined View Class." (string (if (string= "0" val) nil t)) (integer (if (zerop val) nil t)))) (:postgresql - (if (database-type :odbc) + (if (eq :odbc (database-type database)) (if (string= "0" val) nil t) - (equal "t" val))) + (equal "t" val))) (t (equal "t" val))))