summaryrefslogtreecommitdiffstats
path: root/ext/fts5/test/fts5circref.test
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 14:07:11 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 14:07:11 +0000
commit63847496f14c813a5d80efd5b7de0f1294ffe1e3 (patch)
tree01c7571c7c762ceee70638549a99834fdd7c411b /ext/fts5/test/fts5circref.test
parentInitial commit. (diff)
downloadsqlite3-63847496f14c813a5d80efd5b7de0f1294ffe1e3.tar.xz
sqlite3-63847496f14c813a5d80efd5b7de0f1294ffe1e3.zip
Adding upstream version 3.45.1.upstream/3.45.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ext/fts5/test/fts5circref.test')
-rw-r--r--ext/fts5/test/fts5circref.test80
1 files changed, 80 insertions, 0 deletions
diff --git a/ext/fts5/test/fts5circref.test b/ext/fts5/test/fts5circref.test
new file mode 100644
index 0000000..ea99219
--- /dev/null
+++ b/ext/fts5/test/fts5circref.test
@@ -0,0 +1,80 @@
+# 2018 Dec 22
+#
+# 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 script is testing the FTS5 module.
+#
+
+source [file join [file dirname [info script]] fts5_common.tcl]
+set testprefix fts5circref
+
+# If SQLITE_ENABLE_FTS5 is not defined, omit this file.
+ifcapable !fts5 {
+ finish_test
+ return
+}
+
+do_execsql_test 1.0 {
+ CREATE VIRTUAL TABLE tt USING fts5(a);
+ SELECT name FROM sqlite_master ORDER BY 1;
+} {
+ tt tt_config tt_content tt_data tt_docsize tt_idx
+}
+db_save_and_close
+
+foreach {tn schema sql} {
+ 1 {
+ CREATE TRIGGER tr1 AFTER INSERT ON tt_config BEGIN
+ SELECT * FROM tt;
+ END;
+ } {
+ INSERT INTO tt(tt, rank) VALUES('usermerge', 4);
+ }
+
+ 2 {
+ CREATE TRIGGER tr1 AFTER INSERT ON tt_docsize BEGIN
+ SELECT * FROM tt;
+ END;
+ } {
+ INSERT INTO tt(a) VALUES('one two three');
+ }
+
+ 3 {
+ CREATE TRIGGER tr1 AFTER INSERT ON tt_content BEGIN
+ SELECT * FROM tt;
+ END;
+ } {
+ INSERT INTO tt(a) VALUES('one two three');
+ }
+
+ 4 {
+ CREATE TRIGGER tr1 AFTER INSERT ON tt_data BEGIN
+ SELECT * FROM tt;
+ END;
+ } {
+ INSERT INTO tt(a) VALUES('one two three');
+ }
+
+ 5 {
+ CREATE TRIGGER tr1 AFTER INSERT ON tt_idx BEGIN
+ SELECT * FROM tt;
+ END;
+ } {
+ INSERT INTO tt(a) VALUES('one two three');
+ }
+} {
+ db_restore_and_reopen
+ do_execsql_test 1.1.$tn.1 $schema
+ do_catchsql_test 1.1.$tn.2 $sql {1 {SQL logic error}}
+ db close
+}
+
+
+finish_test