cl-2sql

Lisp to SQL compiler for Common Lisp
git clone https://logand.com/git/cl-2sql.git/
Log | Files | Refs | README | LICENSE

commit d90278c8922f374dfcf62f1a478996b1bb316b38
parent a4cc5d804892e251483496441cd2c4fea735d633
Author: Tomas Hlavaty <tom@logand.com>
Date:   Tue,  6 Sep 2011 22:40:48 +0200

fix macro q:update

Diffstat:
Mmacros.lisp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/macros.lisp b/macros.lisp @@ -441,7 +441,7 @@ (defsyntax update (tab alist &optional where) `(prefix :update ,tab :set (clist ,@(cl:loop :for (k v) :in alist :collect `(lst " = " ,k ,v))) - ,@where)) + ,where)) (defsyntax column (name type &optional nullable default) `(prefix ,name ,type