X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests%2Ftest-fddl.lisp;h=a206f80d7a0dd13cc231483ce456574b6c496cc4;hb=310198d3ef6c284265a13df7d306c09642f299a2;hp=b75f2cf2dbdc6ceb60ca2d091ed3dd8c65623c14;hpb=7c7edf1d85706148f55a8507a261d024defa0c7c;p=clsql.git diff --git a/tests/test-fddl.lisp b/tests/test-fddl.lisp index b75f2cf..a206f80 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) @@ -276,10 +276,16 @@ (max (expt 2 60)) (rest rows (cdr rest))) ((= i (length rows)) t) - (let ((row (car rest)) - (index (1+ i))) - (unless (and (eql (first row) index) - (eql (second row) (truncate max index))) + (let ((index (1+ i)) + (int (first (car rest))) + (bigint (second (car rest)))) + (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) + (eql bigint (truncate max index))) (return nil)))))) 555 t)