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

Unified Diff: third_party/sqlite/sqlite-src-3070603/test/vtab9.test

Issue 949043002: Add //third_party/sqlite to dirs_to_snapshot, remove net_sql.patch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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-3070603/test/vtab9.test
diff --git a/third_party/sqlite/sqlite-src-3070603/test/vtab9.test b/third_party/sqlite/sqlite-src-3070603/test/vtab9.test
new file mode 100644
index 0000000000000000000000000000000000000000..b1290ebd507646d22e7163d4a747c64b50af9962
--- /dev/null
+++ b/third_party/sqlite/sqlite-src-3070603/test/vtab9.test
@@ -0,0 +1,70 @@
+# 2006 August 29
+#
+# 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. The
+# focus of this file inserting into virtual tables from a SELECT
+# statement.
+#
+# $Id: vtab9.test,v 1.2 2007/04/16 15:06:26 danielk1977 Exp $
+
+set testdir [file dirname $argv0]
+source $testdir/tester.tcl
+
+ifcapable !vtab {
+ finish_test
+ return
+}
+
+do_test vtab9-1.1 {
+ register_echo_module [sqlite3_connection_pointer db]
+ execsql {
+ CREATE TABLE t0(a);
+ CREATE VIRTUAL TABLE t1 USING echo(t0);
+ INSERT INTO t1 SELECT 'hello';
+ SELECT rowid, * FROM t1;
+ }
+} {1 hello}
+
+do_test vtab9-1.2 {
+ execsql {
+ CREATE TABLE t2(a,b,c);
+ CREATE VIRTUAL TABLE t3 USING echo(t2);
+ CREATE TABLE d1(a,b,c);
+ INSERT INTO d1 VALUES(1,2,3);
+ INSERT INTO d1 VALUES('a','b','c');
+ INSERT INTO d1 VALUES(NULL,'x',123.456);
+ INSERT INTO d1 VALUES(x'6869',123456789,-12345);
+ INSERT INTO t3(a,b,c) SELECT * FROM d1;
+ SELECT rowid, * FROM t3;
+ }
+} {1 1 2 3 2 a b c 3 {} x 123.456 4 hi 123456789 -12345}
+
+# do_test vtab9-2.1 {
+# execsql {
+# CREATE TABLE t4(a);
+# CREATE VIRTUAL TABLE t5 USING echo(t4);
+# INSERT INTO t4 VALUES('hello');
+# SELECT rowid, a FROM t5;
+# }
+# } {1 hello}
+# do_test vtab9-2.2 {
+# execsql {
+# INSERT INTO t5(rowid, a) VALUES(1, 'goodbye');
+# }
+# } {1 hello}
+# do_test vtab9-2.3 {
+# execsql {
+# REPLACE INTO t5(rowid, a) VALUES(1, 'goodbye');
+# SELECT * FROM t5;
+# }
+# } {1 goodbye}
+
+unset -nocomplain echo_module_begin_fail
+finish_test
« no previous file with comments | « third_party/sqlite/sqlite-src-3070603/test/vtab8.test ('k') | third_party/sqlite/sqlite-src-3070603/test/vtabA.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698