From: Nathan Bird Date: Mon, 1 Feb 2010 20:12:12 +0000 (-0500) Subject: Marking :connection/query-command as mysql only for now. It is low priority and cause... X-Git-Tag: v5.0.0~35 X-Git-Url: http://git.kpe.io/?p=clsql.git;a=commitdiff_plain;h=799820388d21ad2d81502816025fdc6f89f71bf2;hp=d22f943ae95f7421218d74e68179b773c63c0635 Marking :connection/query-command as mysql only for now. It is low priority and causes chained failures on other backends. --- diff --git a/tests/test-init.lisp b/tests/test-init.lisp index 500b898..7a46089 100644 --- a/tests/test-init.lisp +++ b/tests/test-init.lisp @@ -183,6 +183,9 @@ *rt-ooddl* *rt-oodml* *rt-syntax*)) (let ((test (second test-form))) (cond + ((and (not (eql db-underlying-type :mysql)) + (clsql-sys:in test :connection/query-command)) + (push (cons test "Known to only work in mysql as yet.") skip-tests)) ((and (null (clsql-sys:db-type-has-views? db-underlying-type)) (clsql-sys:in test :fddl/view/1 :fddl/view/2 :fddl/view/3 :fddl/view/4)) (push (cons test "views not supported.") skip-tests))