diff options
author | dan <dan@noemail.net> | 2016-07-22 10:09:26 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2016-07-22 10:09:26 +0000 |
commit | 12ca5ac3d2da1115b9462ebd65cddb850a550bfd (patch) | |
tree | 1ae46001f59a7430c287827ed0db925ee346522c /tool/sqldiff.c | |
parent | 033ac6af7e7fd926299e5b2f9a50a727676681b9 (diff) | |
download | sqlite-12ca5ac3d2da1115b9462ebd65cddb850a550bfd.tar.gz sqlite-12ca5ac3d2da1115b9462ebd65cddb850a550bfd.zip |
Fix a problem with upper case module names in the "sqldiff --vtab" command.
FossilOrigin-Name: 87e25fc472604b3978811be53991104c665a95e7
Diffstat (limited to 'tool/sqldiff.c')
-rw-r--r-- | tool/sqldiff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/sqldiff.c b/tool/sqldiff.c index dbdf726df..e92e8aab2 100644 --- a/tool/sqldiff.c +++ b/tool/sqldiff.c @@ -1822,7 +1822,7 @@ const char *all_tables_sql(){ int rc; rc = sqlite3_exec(g.db, - "CREATE TEMP TABLE tblmap(module, postfix);" + "CREATE TEMP TABLE tblmap(module COLLATE nocase, postfix);" "INSERT INTO temp.tblmap VALUES" "('fts3', '_content'), ('fts3', '_segments'), ('fts3', '_segdir')," |