r9125: work around myodbc bug
[clsql.git] / sql / table.lisp
index d51960e3e06f617536bd167693d4ea9b3c5e4707..b9a5ef1bd1534d9215e441123549c63d9d299ef0 100644 (file)
@@ -174,7 +174,8 @@ specification of a table to drop the index from."
        (unless (index-exists-p index-name :database database)
          (return-from drop-index)))
       (:error t))
-    (unless (db-type-use-column-on-drop-index? (database-underlying-type database))
+    (unless (db-type-use-column-on-drop-index? 
+            (database-underlying-type database))
       (setq on nil))
     (execute-command (format nil "DROP INDEX ~A~A" index-name
                              (if (null on) ""