From: Kirill Shcherbatov <kshcherbatov@tarantool.org> To: tarantool-patches@freelists.org Cc: korablev@tarantool.org, Kirill Shcherbatov <kshcherbatov@tarantool.org> Subject: [tarantool-patches] [PATCH v1 1/1] sql: triggers on view unfinished updates Date: Thu, 16 Aug 2018 16:26:31 +0300 [thread overview] Message-ID: <d216d3e7d529c4e3d8e91daa85b7282a26c67580.1534425929.git.kshcherbatov@tarantool.org> (raw) Excepting primary index is a typical thing for view so we should use space_index instead of index_find that doesn't setup diag error when no index is finded. Closes #3536. --- Branch: https://github.com/tarantool/tarantool/tree/kshch/gh-3536-failed-view-insertion Issue: https://github.com/tarantool/tarantool/issues/3536 src/box/sql/build.c | 3 ++- test/sql/triggers.result | 34 ++++++++++++++++++++++++++++++++++ test/sql/triggers.test.lua | 14 ++++++++++++++ 3 files changed, 50 insertions(+), 1 deletion(-) diff --git a/src/box/sql/build.c b/src/box/sql/build.c index cdf2bfc..dddeb12 100644 --- a/src/box/sql/build.c +++ b/src/box/sql/build.c @@ -290,7 +290,8 @@ table_column_is_in_pk(Table *table, uint32_t column) struct space *space = space_by_id(table->def->id); assert(space != NULL); - struct index *primary_idx = index_find(space, 0 /* PK */); + /* Primary key always has index 0. */ + struct index *primary_idx = space_index(space, 0); /* Views don't have any indexes. */ if (primary_idx == NULL) return false; diff --git a/test/sql/triggers.result b/test/sql/triggers.result index 658571b..556e931 100644 --- a/test/sql/triggers.result +++ b/test/sql/triggers.result @@ -356,3 +356,37 @@ box.sql.execute("DROP TABLE test;") box.sql.execute("DROP TABLE test2;") --- ... +-- +-- gh-3536: Some triggers cause error messages and/or half-finished updates +-- +box.cfg{} +--- +... +box.sql.execute("CREATE TABLE t (s1 INT, s2 INT, s3 INT, s4 INT PRIMARY KEY);") +--- +... +box.sql.execute("CREATE VIEW v AS SELECT s1, s2 FROM t;") +--- +... +box.sql.execute("CREATE TRIGGER tv INSTEAD OF UPDATE ON v BEGIN UPDATE t SET s3 = new.s1 WHERE s1 = old.s1; END;") +--- +... +box.sql.execute("INSERT INTO t VALUES (1,1,1,1);") +--- +... +box.sql.execute("UPDATE v SET s2 = s1 + 1;") +--- +... +box.sql.execute("UPDATE v SET s1 = s1 + 5;") +--- +... +box.sql.execute("SELECT * FROM t;") +--- +- - [1, 1, 6, 1] +... +box.sql.execute("DROP VIEW v;") +--- +... +box.sql.execute("DROP TABLE t;") +--- +... diff --git a/test/sql/triggers.test.lua b/test/sql/triggers.test.lua index 8fd385c..fff58e9 100644 --- a/test/sql/triggers.test.lua +++ b/test/sql/triggers.test.lua @@ -142,3 +142,17 @@ box.sql.execute("SELECT * FROM test2") box.sql.execute("ROLLBACK;") box.sql.execute("DROP TABLE test;") box.sql.execute("DROP TABLE test2;") + +-- +-- gh-3536: Some triggers cause error messages and/or half-finished updates +-- +box.cfg{} +box.sql.execute("CREATE TABLE t (s1 INT, s2 INT, s3 INT, s4 INT PRIMARY KEY);") +box.sql.execute("CREATE VIEW v AS SELECT s1, s2 FROM t;") +box.sql.execute("CREATE TRIGGER tv INSTEAD OF UPDATE ON v BEGIN UPDATE t SET s3 = new.s1 WHERE s1 = old.s1; END;") +box.sql.execute("INSERT INTO t VALUES (1,1,1,1);") +box.sql.execute("UPDATE v SET s2 = s1 + 1;") +box.sql.execute("UPDATE v SET s1 = s1 + 5;") +box.sql.execute("SELECT * FROM t;") +box.sql.execute("DROP VIEW v;") +box.sql.execute("DROP TABLE t;") -- 2.7.4
next reply other threads:[~2018-08-16 13:26 UTC|newest] Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top 2018-08-16 13:26 Kirill Shcherbatov [this message] 2018-08-16 13:45 ` [tarantool-patches] " n.pettik 2018-08-16 13:49 ` Kirill Shcherbatov 2018-08-16 13:57 ` Vladislav Shpilevoy 2018-08-16 14:04 ` Kirill Shcherbatov 2018-08-16 14:41 ` n.pettik 2018-08-17 6:30 ` Kirill Yukhin
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=d216d3e7d529c4e3d8e91daa85b7282a26c67580.1534425929.git.kshcherbatov@tarantool.org \ --to=kshcherbatov@tarantool.org \ --cc=korablev@tarantool.org \ --cc=tarantool-patches@freelists.org \ --subject='Re: [tarantool-patches] [PATCH v1 1/1] sql: triggers on view unfinished updates' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox