From: Nikita Pettik <korablev@tarantool.org> To: tarantool-patches@freelists.org Cc: v.shpilevoy@tarantool.org, Nikita Pettik <korablev@tarantool.org> Subject: [tarantool-patches] [PATCH 2/4] Fix creation of FK constraint in case of no child's PK Date: Fri, 29 Mar 2019 21:24:22 +0300 [thread overview] Message-ID: <20935e8a64d7056a0316b71a933521567705be26.1553883575.git.korablev@tarantool.org> (raw) In-Reply-To: <cover.1553883575.git.korablev@tarantool.org> In-Reply-To: <cover.1553883575.git.korablev@tarantool.org> on_replace_dd_fk_constraint() assumes that child's primary index exists: it is used to verify emptiness of space invoking index_size(). This commit fixes this obvious bug which could lead to crash. --- src/box/alter.cc | 2 +- test/sql/foreign-keys.result | 25 +++++++++++++++++++++++++ test/sql/foreign-keys.test.lua | 10 ++++++++++ 3 files changed, 36 insertions(+), 1 deletion(-) diff --git a/src/box/alter.cc b/src/box/alter.cc index 40b32eafe..2f783c8e7 100644 --- a/src/box/alter.cc +++ b/src/box/alter.cc @@ -3901,7 +3901,7 @@ on_replace_dd_fk_constraint(struct trigger * /* trigger*/, void *event) * checks on existing data in space. */ struct index *pk = space_index(child_space, 0); - if (index_size(pk) > 0) { + if (pk != NULL && index_size(pk) > 0) { tnt_raise(ClientError, ER_CREATE_FK_CONSTRAINT, fk_def->name, "referencing space must be empty"); diff --git a/test/sql/foreign-keys.result b/test/sql/foreign-keys.result index 731807227..97c3e2442 100644 --- a/test/sql/foreign-keys.result +++ b/test/sql/foreign-keys.result @@ -385,5 +385,30 @@ box.sql.execute("CREATE TABLE t4 (id INT PRIMARY KEY REFERENCES t4);") box.space.T4:drop() --- ... +-- Make sure that child space can feature no PK. +-- +t1 = box.schema.create_space("T1") +--- +... +box.space.T1:format({'ID'}) +--- +... +t2 = box.schema.create_space("T2") +--- +... +i1 = box.space.T2:create_index('I1') +--- +... +box.sql.execute("ALTER TABLE t1 ADD CONSTRAINT fk FOREIGN KEY (id) REFERENCES t2;") +--- +- error: 'Failed to create foreign key constraint ''FK'': foreign key refers to nonexistent + field' +... +t1:drop() +--- +... +t2:drop() +--- +... --- Clean-up SQL DD hash. -test_run:cmd('restart server default with cleanup=1') diff --git a/test/sql/foreign-keys.test.lua b/test/sql/foreign-keys.test.lua index 6f4941e09..078c10c54 100644 --- a/test/sql/foreign-keys.test.lua +++ b/test/sql/foreign-keys.test.lua @@ -174,5 +174,15 @@ box.space.T1:drop() box.sql.execute("CREATE TABLE t4 (id INT PRIMARY KEY REFERENCES t4);") box.space.T4:drop() +-- Make sure that child space can feature no PK. +-- +t1 = box.schema.create_space("T1") +box.space.T1:format({'ID'}) +t2 = box.schema.create_space("T2") +i1 = box.space.T2:create_index('I1') +box.sql.execute("ALTER TABLE t1 ADD CONSTRAINT fk FOREIGN KEY (id) REFERENCES t2;") +t1:drop() +t2:drop() + --- Clean-up SQL DD hash. -test_run:cmd('restart server default with cleanup=1') -- 2.15.1
next prev parent reply other threads:[~2019-03-29 18:24 UTC|newest] Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top 2019-03-29 18:24 [tarantool-patches] [PATCH 0/4] Fixes in SQL involving no-pk or no-format spaces Nikita Pettik 2019-03-29 18:24 ` [tarantool-patches] [PATCH 1/4] Drop foreign keys before indexes in space:drop() Nikita Pettik 2019-03-29 18:24 ` Nikita Pettik [this message] 2019-04-01 13:41 ` [tarantool-patches] Re: [PATCH 2/4] Fix creation of FK constraint in case of no child's PK Vladislav Shpilevoy 2019-03-29 18:24 ` [tarantool-patches] [PATCH 3/4] sql: disallow creation of index on space without format Nikita Pettik 2019-03-29 18:24 ` [tarantool-patches] [PATCH 4/4] sql: disallow creation of FK referencing space without PK Nikita Pettik
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=20935e8a64d7056a0316b71a933521567705be26.1553883575.git.korablev@tarantool.org \ --to=korablev@tarantool.org \ --cc=tarantool-patches@freelists.org \ --cc=v.shpilevoy@tarantool.org \ --subject='Re: [tarantool-patches] [PATCH 2/4] Fix creation of FK constraint in case of no child'\''s PK' \ /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