From: Georgy Kirichenko <georgy@tarantool.org> To: tarantool-patches@freelists.org Cc: Georgy Kirichenko <georgy@tarantool.org> Subject: [tarantool-patches] [PATCH 2/3] Synchronize lua schema update with space cache Date: Wed, 20 Mar 2019 23:31:34 +0300 [thread overview] Message-ID: <95afa83e8d6118d2a0e4a570791bab6c10f20836.1553112720.git.georgy@tarantool.org> (raw) In-Reply-To: <cover.1553112720.git.georgy@tarantool.org> Update lua schema as soon as space cache replace was done instead of doing this while on_commit trigger executes. In opposite then case schema changes would not be visible until commit was finished. Needed for: #2798 --- src/box/alter.cc | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/box/alter.cc b/src/box/alter.cc index 84e74ee89..d4cc5c0cc 100644 --- a/src/box/alter.cc +++ b/src/box/alter.cc @@ -750,8 +750,6 @@ alter_space_commit(struct trigger *trigger, void *event) op->commit(alter, txn->signature); } - trigger_run_xc(&on_alter_space, alter->new_space); - alter->new_space = NULL; /* for alter_space_delete(). */ /* * Delete the old version of the space, we are not @@ -787,6 +785,8 @@ alter_space_rollback(struct trigger *trigger, void * /* event */) space_swap_triggers(alter->new_space, alter->old_space); space_swap_fk_constraints(alter->new_space, alter->old_space); space_cache_replace(alter->new_space, alter->old_space); + trigger_run(&on_alter_space, alter->old_space); + alter_space_delete(alter); } @@ -888,6 +888,7 @@ alter_space_do(struct txn *txn, struct alter_space *alter) * cache with it. */ space_cache_replace(alter->old_space, alter->new_space); + trigger_run_xc(&on_alter_space, alter->new_space); /* * Install transaction commit/rollback triggers to either @@ -1387,7 +1388,6 @@ on_drop_space_commit(struct trigger *trigger, void *event) { (void) event; struct space *space = (struct space *)trigger->data; - trigger_run_xc(&on_alter_space, space); space_delete(space); } @@ -1402,6 +1402,7 @@ on_drop_space_rollback(struct trigger *trigger, void *event) (void) event; struct space *space = (struct space *)trigger->data; space_cache_replace(NULL, space); + trigger_run(&on_alter_space, space); } /** @@ -1411,8 +1412,7 @@ static void on_create_space_commit(struct trigger *trigger, void *event) { (void) event; - struct space *space = (struct space *)trigger->data; - trigger_run_xc(&on_alter_space, space); + (void) trigger; } /** @@ -1428,6 +1428,7 @@ on_create_space_rollback(struct trigger *trigger, void *event) (void) event; struct space *space = (struct space *)trigger->data; space_cache_replace(space, NULL); + trigger_run(&on_alter_space, space); space_delete(space); } @@ -1677,6 +1678,7 @@ on_replace_dd_space(struct trigger * /* trigger */, void *event) * execution on a replica. */ space_cache_replace(NULL, space); + trigger_run_xc(&on_alter_space, space); /* * Do not forget to update schema_version right after * inserting the space to the space_cache, since no @@ -1769,6 +1771,7 @@ on_replace_dd_space(struct trigger * /* trigger */, void *event) * execution on a replica. */ space_cache_replace(old_space, NULL); + trigger_run_xc(&on_alter_space, old_space); /* * Do not forget to update schema_version right after * deleting the space from the space_cache, since no -- 2.21.0
next prev parent reply other threads:[~2019-03-20 20:31 UTC|newest] Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top 2019-03-20 20:31 [tarantool-patches] [PATCH 0/3] Enable ddl between begin and commit statements Georgy Kirichenko 2019-03-20 20:31 ` [tarantool-patches] [PATCH 1/3] Abort vinyl index creation in case of truncation rollback Georgy Kirichenko 2019-03-21 20:16 ` Vladimir Davydov 2019-03-20 20:31 ` Georgy Kirichenko [this message] 2019-03-20 20:31 ` [tarantool-patches] [PATCH 3/3] Require for single statement not autocommit in case of ddl Georgy Kirichenko
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=95afa83e8d6118d2a0e4a570791bab6c10f20836.1553112720.git.georgy@tarantool.org \ --to=georgy@tarantool.org \ --cc=tarantool-patches@freelists.org \ --subject='Re: [tarantool-patches] [PATCH 2/3] Synchronize lua schema update with space cache' \ /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