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

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

Issue 1610963002: Import SQLite 3.10.2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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/statfault.test ('k') | third_party/sqlite/src/test/subtype1.test » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/test/subquery.test
diff --git a/third_party/sqlite/src/test/subquery.test b/third_party/sqlite/src/test/subquery.test
index 93c3f28ddbb7e17f06cf406026f96acc808bfbcc..06facbbae05206e72039bf31516ff56cd555592a 100644
--- a/third_party/sqlite/src/test/subquery.test
+++ b/third_party/sqlite/src/test/subquery.test
@@ -584,4 +584,14 @@ do_test subquery-7.11 {
} {30303}
} ;############# Disabled
+# 2015-04-21.
+# Verify that a memory leak in the table column type and collation analysis
+# is plugged.
+#
+do_execsql_test subquery-8.1 {
+ CREATE TABLE t8(a TEXT, b INT);
+ SELECT (SELECT 0 FROM (SELECT * FROM t1)) AS x WHERE x;
+ SELECT (SELECT 0 FROM (SELECT * FROM (SELECT 0))) AS x WHERE x;
+} {}
+
finish_test
« no previous file with comments | « third_party/sqlite/src/test/statfault.test ('k') | third_party/sqlite/src/test/subtype1.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698