special cased in ODBC limit handling
authorRuss Tyndall <russ@acceleration.net>
Thu, 20 Aug 2009 18:23:33 +0000 (14:23 -0400)
committerRuss Tyndall <russ@acceleration.net>
Thu, 20 Aug 2009 18:23:33 +0000 (14:23 -0400)
sql/expressions.lisp

index 971609e2e68eee3cc2f171f24800cda10c77d71d..16e967bee67d2a4f07e66f0a22a22955a6b275e0 100644 (file)
@@ -587,6 +587,9 @@ uninclusive, and the args from that keyword to the end."
     (write-string "SELECT " *sql-stream*)
     (when all
       (write-string "ALL " *sql-stream*))
+    (when (and limit (eq :odbc (database-type database)))
+      (write-string " TOP " *sql-stream*)
+      (output-sql limit database))
     (when (and distinct (not all))
       (write-string "DISTINCT " *sql-stream*)
       (unless (eql t distinct)
@@ -656,7 +659,7 @@ uninclusive, and the args from that keyword to the end."
               (when (cdr order)
                 (write-char #\, *sql-stream*))))
           (output-sql order-by database)))
-    (when limit
+    (when (and limit (not (eq :odbc (database-type database))))
       (write-string " LIMIT " *sql-stream*)
       (output-sql limit database))
     (when offset