From 799820388d21ad2d81502816025fdc6f89f71bf2 Mon Sep 17 00:00:00 2001 From: Nathan Bird Date: Mon, 1 Feb 2010 15:12:12 -0500 Subject: [PATCH] Marking :connection/query-command as mysql only for now. It is low priority and causes chained failures on other backends. --- tests/test-init.lisp | 3 +++ 1 file changed, 3 insertions(+) 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)) -- 2.34.1