From e4f2899f7dfa917a9de68112078b585e89323f7b Mon Sep 17 00:00:00 2001 From: Maciej Pasternacki Date: Tue, 28 Oct 2008 17:25:55 +0100 Subject: [PATCH] - Ignore NIL values in lists fed to EXECUTE* --- src/common.lisp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common.lisp b/src/common.lisp index 6b7acc5..deb6e59 100644 --- a/src/common.lisp +++ b/src/common.lisp @@ -141,6 +141,7 @@ lists of statements." (labels ((execute-stmts (statements) (dolist (stmt statements) (etypecase stmt + (null) ; ignore NILs. (string (postmodern:execute stmt)) (list (if (keywordp (first stmt)) (postmodern:execute (s-sql:sql-compile stmt)) -- 2.11.4.GIT