r9133: case handling, test report summarizing, documentation additions
[clsql.git] / db-sqlite / sqlite-sql.lisp
index 9b7a8fceae594b08d404e4541d544fa0d1a23e6c..86749961bf614c01e5e87fd8c5da70f36c7f075f 100644 (file)
   ;; Query is copied from .table command of sqlite comamnd line utility.
   (remove-if #'(lambda (s)
                  (and (>= (length s) 11)
-                      (string= (subseq s 0 11) "_CLSQL_SEQ_")))
+                      (string-equal (subseq s 0 11) "_CLSQL_SEQ_")))
              (mapcar #'car (database-query
                             "SELECT name FROM sqlite_master WHERE type='table' UNION ALL SELECT name FROM sqlite_temp_master WHERE type='table' ORDER BY name"
                             database '()))))