X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=db-sqlite%2Fsqlite-sql.lisp;fp=db-sqlite%2Fsqlite-sql.lisp;h=86749961bf614c01e5e87fd8c5da70f36c7f075f;hb=967266c94b00f91e5967b8330fe2b9134b0c0447;hp=9b7a8fceae594b08d404e4541d544fa0d1a23e6c;hpb=cc92d162f24648d65ad872098353305a5baf91d7;p=clsql.git diff --git a/db-sqlite/sqlite-sql.lisp b/db-sqlite/sqlite-sql.lisp index 9b7a8fc..8674996 100644 --- a/db-sqlite/sqlite-sql.lisp +++ b/db-sqlite/sqlite-sql.lisp @@ -188,7 +188,7 @@ ;; 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 '()))))