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

Unified Diff: third_party/sqlite/sqlite-src-3080704/test/tkt2817.test

Issue 2363173002: [sqlite] Remove obsolete reference version 3.8.7.4. (Closed)
Patch Set: Created 4 years, 3 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
Index: third_party/sqlite/sqlite-src-3080704/test/tkt2817.test
diff --git a/third_party/sqlite/sqlite-src-3080704/test/tkt2817.test b/third_party/sqlite/sqlite-src-3080704/test/tkt2817.test
deleted file mode 100644
index 579cf2f7ba62fd7b606a8ef0251b87c6e5bbe837..0000000000000000000000000000000000000000
--- a/third_party/sqlite/sqlite-src-3080704/test/tkt2817.test
+++ /dev/null
@@ -1,72 +0,0 @@
-# 2007 December 02
-#
-# The author disclaims copyright to this source code. In place of
-# a legal notice, here is a blessing:
-#
-# May you do good and not evil.
-# May you find forgiveness for yourself and forgive others.
-# May you share freely, never taking more than you give.
-#
-#***********************************************************************
-# This file implements regression tests for SQLite library.
-#
-# Specifically, it tests that bug 2817 is fixed.
-#
-# $Id: tkt2817.test,v 1.2 2008/07/12 14:52:21 drh Exp $
-
-set testdir [file dirname $argv0]
-source $testdir/tester.tcl
-
-do_test tkt2817-1.0 {
- execsql {
- CREATE TEMP TABLE tbl(a, b, c);
- -- INSERT INTO tbl VALUES(1, 'abc', 'def');
- -- INSERT INTO tbl VALUES(2, 'ghi', 'jkl');
- }
-} {}
-do_test tkt2817-1.1 {
- execsql {
- CREATE TABLE main.tbl(a, b, c);
- CREATE INDEX main.tbli ON tbl(a, b, c);
- INSERT INTO main.tbl SELECT a, b, c FROM temp.tbl;
- }
-} {}
-
-# When bug #2817 existed, this test was failing.
-#
-integrity_check tkt2817-1.2
-
-# So was this one.
-#
-db close
-sqlite3 db test.db
-integrity_check tkt2817-1.3
-
-
-# These tests - tkt2817-2.* - are the same as the previous block, except
-# for the fact that the temp-table and the main table do not share the
-# same name. #2817 did not cause a problem with these tests.
-#
-db close
-forcedelete test.db
-sqlite3 db test.db
-do_test tkt2817-2.0 {
- execsql {
- CREATE TEMP TABLE tmp(a, b, c);
- INSERT INTO tmp VALUES(1, 'abc', 'def');
- INSERT INTO tmp VALUES(2, 'ghi', 'jkl');
- }
-} {}
-do_test tkt2817-2.1 {
- execsql {
- CREATE TABLE main.tbl(a, b, c);
- CREATE INDEX main.tbli ON tbl(a, b, c);
- INSERT INTO main.tbl SELECT a, b, c FROM temp.tmp;
- }
-} {}
-integrity_check tkt2817-2.2
-db close
-sqlite3 db test.db
-integrity_check tkt2817-2.3
-
-finish_test
« no previous file with comments | « third_party/sqlite/sqlite-src-3080704/test/tkt2767.test ('k') | third_party/sqlite/sqlite-src-3080704/test/tkt2820.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698