From: Russ Tyndall Date: Tue, 13 Dec 2011 14:13:25 +0000 (-0500) Subject: Fixed bug reported by JTK related to the not-null sql-expression X-Git-Tag: v6.1.1~19 X-Git-Url: http://git.kpe.io/?p=clsql.git;a=commitdiff_plain;h=4fa0aba28de88bf4db5e979152d90e01f8a365f2 Fixed bug reported by JTK related to the not-null sql-expression especially as used in conjunction with the is operator Made null called with more than one argument throw an exception instead of silently discarding all arguments past the first --- diff --git a/ChangeLog b/ChangeLog index 9107ff2..c49345b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2011-01-04 Russ Tyndall + * sql/operations.lisp + + Fixed bug reported by JTK related to the not-null sql-expression + especially as used in conjunction with the is operator. + + Made null called with more than one argument throw an exception + instead of silently discarding all arguments past the first + 2012-01-04 Nathan Bird * db-odbc/odbc-api.lisp (%sql-driver-connect): in the call to diff --git a/sql/operations.lisp b/sql/operations.lisp index 7b55880..37d751e 100644 --- a/sql/operations.lisp +++ b/sql/operations.lisp @@ -82,15 +82,20 @@ (make-instance 'sql-query-modifier-exp :modifier 'having :components rest)) -(defsql sql-null (:symbol "null") (&rest rest) - (if rest +(defsql sql-null (:symbol "null") (&optional not-null-thing) + (if not-null-thing (make-instance 'sql-relational-exp :operator 'is - :sub-expressions (list (car rest) nil)) + :sub-expressions (list not-null-thing nil)) (make-instance 'sql-value-exp :components 'null))) -(defsql sql-not-null (:symbol "not-null") () - (make-instance 'sql-value-exp - :components '|NOT NULL|)) +(defsql sql-not-null (:symbol "not-null") (&optional not-null-thing) + (if not-null-thing + (make-instance + 'sql-relational-exp + :operator 'IS + :sub-expressions (list not-null-thing + (sql-expression :string "NOT NULL"))) + (sql-expression :string "NOT NULL"))) (defsql sql-exists (:symbol "exists") (&rest rest) (make-instance 'sql-function-exp diff --git a/tests/test-syntax.lisp b/tests/test-syntax.lisp index ed1f481..9bd6662 100644 --- a/tests/test-syntax.lisp +++ b/tests/test-syntax.lisp @@ -190,6 +190,18 @@ (clsql:sql [not [null]]) "(NOT (NULL))") +(deftest :syntax/null/5 + (clsql:sql [is [foo.bar] [null]]) + "(FOO.BAR IS NULL)") + +(deftest :syntax/null/6 + (clsql:sql [is [foo.bar] [not-null]]) + "(FOO.BAR IS NOT NULL)") + +(deftest :syntax/null/7 + (clsql:sql [not-null [foo.bar]]) + "(FOO.BAR IS NOT NULL)") + (deftest :syntax/relational/1