X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests%2Ftest-fddl.lisp;h=34c956a79a7918595556303c146beb15aa39d703;hb=fd2493718d0e1114fcbe3dd578dab658ea383e81;hp=8c54c3fb4319824227dcdcc73b75b20f48a13bc3;hpb=d27220b2eb7a769fe8ec1f8b674c9422dde014c9;p=clsql.git diff --git a/tests/test-fddl.lisp b/tests/test-fddl.lisp index 8c54c3f..34c956a 100644 --- a/tests/test-fddl.lisp +++ b/tests/test-fddl.lisp @@ -88,9 +88,13 @@ '(:postgresql :postgresql-socket)) :ignore :warn))) - (clsql:create-table [foo] - '(([bar] integer :not-null :unique :primary-key) - ([baz] string :not-null :unique)))) + (case *test-database-underlying-type* + (:mssql (clsql:create-table [foo] + '(([bar] integer :not-null :primary-key) + ([baz] string :not-null :unique)))) + (t (clsql:create-table [foo] + '(([bar] integer :not-null :unique :primary-key) + ([baz] string :not-null :unique)))))) (clsql:table-exists-p [foo])) (progn (clsql:drop-table [foo]) @@ -354,7 +358,7 @@ (progn (clsql:cache-table-queries "EMPLOYEE" :action :flush) (gethash "EMPLOYEE" (clsql-sys::attribute-cache clsql:*default-database*)))) - (NIL (T NIL) T (T NIL))) + (nil (t nil) t (t nil))) ))