X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=sql%2Fexpressions.lisp;h=c7fd033da646d6c0a17520a64f129f79fb37ad34;hb=1f69b5052a5c00b639dd646d5b70fb67045559d5;hp=d09b154e0ef99907195f6b41f078f420e7c95283;hpb=78da4831fd20e83f64c74fd6140ed6e8ee73a495;p=clsql.git diff --git a/sql/expressions.lisp b/sql/expressions.lisp index d09b154..c7fd033 100644 --- a/sql/expressions.lisp +++ b/sql/expressions.lisp @@ -421,7 +421,7 @@ (defmethod output-sql ((expr sql-query-modifier-exp) database) (with-slots (modifier components) expr - (output-sql modifier database) + (%write-operator modifier database) (write-string " " *sql-stream*) (output-sql (car components) database) (when components @@ -586,10 +586,6 @@ uninclusive, and the args from that keyword to the end." (when *in-subselect* (write-string "(" *sql-stream*)) (write-string "SELECT " *sql-stream*) - (when (and limit (eql :mssql (database-underlying-type database))) - (write-string " TOP " *sql-stream*) - (output-sql limit database) - (write-string " " *sql-stream*)) (when all (write-string " ALL " *sql-stream*)) (when (and distinct (not all)) @@ -598,6 +594,10 @@ uninclusive, and the args from that keyword to the end." (write-string " ON " *sql-stream*) (output-sql distinct database) (write-char #\Space *sql-stream*))) + (when (and limit (eql :mssql (database-underlying-type database))) + (write-string " TOP " *sql-stream*) + (output-sql limit database) + (write-string " " *sql-stream*)) (let ((*in-subselect* t)) (output-sql (apply #'vector selections) database)) (when from @@ -801,9 +801,9 @@ uninclusive, and the args from that keyword to the end." (declaim (inline listify)) (defun listify (x) - (if (atom x) - (list x) - x)) + (if (listp x) + x + (list x))) (defmethod output-sql ((stmt sql-create-table) database) (flet ((output-column (column-spec)