X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=sql%2Fgeneric-postgresql.lisp;h=ac01e7ba073ecdfe4d2dcb91039c12796f8d3706;hp=43a92012532c85bfdc51098c00bfb95e8e18601b;hb=67a677df17f4af2cbf6e57294605f2454c392e00;hpb=d528dfe7e23fe5732fdbf1a282498fbec298d6cd diff --git a/sql/generic-postgresql.lisp b/sql/generic-postgresql.lisp index 43a9201..ac01e7b 100644 --- a/sql/generic-postgresql.lisp +++ b/sql/generic-postgresql.lisp @@ -34,6 +34,11 @@ (format nil "CHAR(~A)" (car args)) "VARCHAR")) +(defmethod database-get-type-specifier ((type (eql 'tinyint)) args database + (db-type (eql :postgresql))) + (declare (ignore args database)) + "INT2") + (defmethod database-get-type-specifier ((type (eql 'smallint)) args database (db-type (eql :postgresql))) (declare (ignore args database)) @@ -110,7 +115,7 @@ (result (mapcar #'car (database-query - (format nil "SELECT attname FROM pg_class,pg_attribute WHERE pg_class.oid=attrelid AND relname='~A'~A" + (format nil "SELECT attname FROM pg_class,pg_attribute WHERE pg_class.oid=attrelid AND attisdropped = FALSE AND relname='~A'~A" (string-downcase table) owner-clause) database nil nil))))