X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests%2Ftest-fddl.lisp;h=c5c305b3828d3d4aa1ac694df734e8949fb5339a;hb=bb71f27c241187a32c7839aea501114d65e29f85;hp=3c69653edc6be24b194f592c0e26faff002904fb;hpb=8e7d3ca04beea7c047f3634b05dba813ee903919;p=clsql.git diff --git a/tests/test-fddl.lisp b/tests/test-fddl.lisp index 3c69653..c5c305b 100644 --- a/tests/test-fddl.lisp +++ b/tests/test-fddl.lisp @@ -119,7 +119,7 @@ t) (deftest :fddl/attributes/7 - (and (member (clsql:attribute-type [bd_utime] [employee]) '(:bigint :int8 :number)) t) + (and (member (clsql:attribute-type [bd_utime] [employee]) '(:bigint :int8 :char)) t) t) @@ -213,7 +213,7 @@ (apply #'values result)) t t t) -;; test list-table-indexes +;; test list-indexes with keyword :ON (deftest :fddl/index/3 (progn (clsql:create-table [i3test] '(([a] (string 10)) @@ -229,7 +229,7 @@ (sort (mapcar #'string-downcase - (clsql:list-table-indexes [i3test] :owner *test-database-user*)) + (clsql:list-indexes :on [i3test] :owner *test-database-user*)) #'string-lessp) (progn (clsql:drop-index [bar] :on [i3test]) @@ -279,8 +279,9 @@ (let ((index (1+ i)) (int (first (car rest))) (bigint (second (car rest)))) - (when (and (eq *test-database-type* :odbc) - (eq *test-database-underlying-type* :postgresql) + (when (and (or (eq *test-database-type* :oracle) + (and (eq *test-database-type* :odbc) + (eq *test-database-underlying-type* :postgresql))) (stringp bigint)) (setf bigint (parse-integer bigint))) (unless (and (eql int index)