Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: third_party/sqlite/src/test/analyze.test

Issue 6990047: Import SQLite 3.7.6.3. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/sqlite/src/test/alter4.test ('k') | third_party/sqlite/src/test/analyze2.test » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/test/analyze.test
diff --git a/third_party/sqlite/src/test/analyze.test b/third_party/sqlite/src/test/analyze.test
index 867cf0f6bafbbd312f8f7bded3442379c23887f9..766cd50d1fce0da503b19ec4ced0e1a854e4bb8a 100644
--- a/third_party/sqlite/src/test/analyze.test
+++ b/third_party/sqlite/src/test/analyze.test
@@ -73,7 +73,7 @@ do_test analyze-1.6.3 {
} {1 {table sqlite_stat1 may not be indexed}}
do_test analyze-1.7 {
execsql {
- SELECT * FROM sqlite_stat1
+ SELECT * FROM sqlite_stat1 WHERE idx NOT NULL
}
} {}
do_test analyze-1.8 {
@@ -83,7 +83,7 @@ do_test analyze-1.8 {
} {0 {}}
do_test analyze-1.9 {
execsql {
- SELECT * FROM sqlite_stat1
+ SELECT * FROM sqlite_stat1 WHERE idx NOT NULL
}
} {}
do_test analyze-1.10 {
@@ -296,7 +296,7 @@ do_test analyze-99.1 {
UPDATE sqlite_master SET sql='nonsense' WHERE name='sqlite_stat1';
}
db close
- sqlite3 db test.db
+ catch { sqlite3 db test.db }
catchsql {
ANALYZE
}
« no previous file with comments | « third_party/sqlite/src/test/alter4.test ('k') | third_party/sqlite/src/test/analyze2.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698