X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=sql%2Foperations.lisp;h=94ee20964b5c089ded361d10902eb30b890881c6;hp=bc99d2a136eaf02297f8747a9c8e9eb250178393;hb=46525a14e41672ba3daaf79c68fdc413e47c4fd0;hpb=e303385b84c6246c7d60ebd95d764a282a181a23 diff --git a/sql/operations.lisp b/sql/operations.lisp index bc99d2a..94ee209 100644 --- a/sql/operations.lisp +++ b/sql/operations.lisp @@ -66,7 +66,7 @@ (defsql sql-minus (:symbol "minus") (&rest rest) (make-instance 'sql-set-exp - :operator 'except :sub-expressions rest)) + :operator 'minus :sub-expressions rest)) (defsql sql-limit (:symbol "limit") (&rest rest) (make-instance 'sql-query-modifier-exp @@ -139,15 +139,25 @@ (make-instance 'sql-relational-exp :operator 'in :sub-expressions rest)) -(defsql sql-concat (:symbol "concat") (&rest rest) +(defsql sql-concat-op (:symbol "concat-op") (&rest rest) (make-instance 'sql-relational-exp :operator '\|\| :sub-expressions rest)) +(defsql sql-concat (:symbol "concat") (&rest rest) + (make-instance 'sql-function-exp + :name 'concat :args rest)) + (defsql sql-substr (:symbol "substr") (&rest rest) + (if (= (length rest) 3) + (make-instance 'sql-function-exp + :name 'substr :args rest) + (error 'sql-user-error :message "SUBSTR must have 3 arguments."))) + +(defsql sql-substring (:symbol "substring") (&rest rest) (if (= (length rest) 3) (make-instance 'sql-function-exp :name 'substring :args rest) - (error 'clsql-sql-syntax-error "SUBSTR must have 3 arguments."))) + (error 'sql-user-error :message "SUBSTRING must have 3 arguments."))) (defsql sql-is (:symbol "is") (&rest rest) (make-instance 'sql-relational-exp @@ -213,7 +223,7 @@ (defsql sql-between (:symbol "between") (&rest rest) (if (= (length rest) 3) (make-instance 'sql-between-exp :name 'between :args rest) - (error 'clsql-sql-syntax-error "BETWEEN must have 3 arguments."))) + (error 'sql-user-error :message "BETWEEN must have 3 arguments."))) (defsql sql-distinct (:symbol "distinct") (&rest rest) (make-instance 'sql-query-modifier-exp :modifier 'distinct @@ -224,5 +234,23 @@ :name 'coalesce :args rest)) (defsql sql-nvl (:symbol "nvl") (&rest rest) + (if (= (length rest) 2) + (make-instance 'sql-function-exp + :name 'coalesce :args rest) + (error 'sql-user-error :message "NVL accepts exactly 2 arguments."))) + +(defsql sql-userenv (:symbol "userenv") (&rest rest) (make-instance 'sql-function-exp - :name 'coalesce :args rest)) + :name 'userenv :args rest)) + +(defsql sql-lower (:symbol "lower") (&rest rest) + (if (= (length rest) 1) + (make-instance 'sql-function-exp + :name 'lower :args rest) + (error 'sql-user-error :message "LOWER must have 1 argument."))) + +(defsql sql-upper (:symbol "upper") (&rest rest) + (if (= (length rest) 1) + (make-instance 'sql-function-exp + :name 'upper :args rest) + (error 'sql-user-error :message "UPPER must have 1 argument.")))