r9259: fix typo in var name
[clsql.git] / sql / syntax.lisp
index bf3ce15484487696cd7e8fb1d6e4b5da5aa4fab1..9fca44542083ca0f1721fc46c13bb85577d18d16 100644 (file)
@@ -14,8 +14,7 @@
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
-
-(in-package #:clsql-sys)
+(in-package #:clsql)
 
 (defvar *original-reader-enter* nil)
 
@@ -158,7 +157,7 @@ attribute and type."
 for the operator."
   (typecase operation
     (string nil)
-    (symbol (gethash (string-upcase (symbol-name operation))
+    (symbol (gethash (symbol-name-default-case (symbol-name operation))
                      *sql-op-table*))))
 
 (defun sql-operation (operation &rest rest)