From: Vladislav Shpilevoy <v.shpilevoy@tarantool.org> To: Sergey Ostanevich <sergos@tarantool.org>, Roman Khabibov <roman.habibov@tarantool.org> Cc: tarantool-patches@dev.tarantool.org Subject: Re: [Tarantool-patches] [PATCH v2 2/3] box: make constraint operations transactional Date: Sun, 22 Dec 2019 15:59:52 +0100 [thread overview] Message-ID: <9e1947e1-2cba-f94a-476d-210f6c47acbb@tarantool.org> (raw) In-Reply-To: <20191221205437.GA45@tarantool.org> Hi! Thanks for the review! On 21/12/2019 21:54, Sergey Ostanevich wrote: > Hi! > > Im looking to the latest branch romanhabibov/gh-3503-constr-names_v3, > apparently with changes from Vlad? > > Although the change is simple, it is not relevant to the patchset? The change is relevant, because allows to simplify CreateConstraintID object creation. > > @@ -1408,14 +1419,14 @@ ModifyIndex::~ModifyIndex() > /** CreateIndex - add a new index to the space. */ > class CreateIndex: public AlterSpaceOp > { > -public: > - CreateIndex(struct alter_space *alter) > - :AlterSpaceOp(alter), new_index(NULL), new_index_def(NULL) > - {} > /** New index. */ > struct index *new_index; > /** New index index_def. */ > struct index_def *new_index_def; > +public: > + CreateIndex(struct alter_space *alter, struct index_def *def) > + :AlterSpaceOp(alter), new_index(NULL), new_index_def(def) > + {} > virtual void alter_def(struct alter_space *alter); > virtual void prepare(struct alter_space *alter); > virtual void commit(struct alter_space *alter, int64_t lsn); > > And I'm still not sure about memory allocation/deallocation is correct during > constraint id creation/drop. If you've found an error, then please, share. I fixed all the problems I found. > > Regards, > Sergos >
next prev parent reply other threads:[~2019-12-22 14:59 UTC|newest] Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top 2019-11-28 18:34 [Tarantool-patches] [PATCH v2 0/2] Add constraint names hash table to space Roman Khabibov 2019-11-28 18:34 ` [Tarantool-patches] [PATCH v2 1/2] box: introduce constraint names hash table Roman Khabibov 2019-11-30 1:03 ` Vladislav Shpilevoy 2019-12-04 16:23 ` [Tarantool-patches] [PATCH v2 1/3] " Roman Khabibov 2019-12-07 16:34 ` Vladislav Shpilevoy 2019-12-10 12:48 ` Roman Khabibov 2019-11-28 18:34 ` [Tarantool-patches] [PATCH v2 2/2] sql: make constraint operations transactional Roman Khabibov 2019-11-29 7:38 ` Roman Khabibov 2019-11-30 1:03 ` Vladislav Shpilevoy 2019-12-04 16:23 ` [Tarantool-patches] [PATCH v2 2/3] " Roman Khabibov 2019-12-05 18:43 ` Roman Khabibov 2019-12-07 16:35 ` Vladislav Shpilevoy 2019-12-10 12:49 ` [Tarantool-patches] [PATCH v2 2/3] box: " Roman Khabibov 2019-12-15 22:26 ` Vladislav Shpilevoy 2019-12-17 15:03 ` Roman Khabibov 2019-12-28 0:18 ` Nikita Pettik 2019-12-28 11:07 ` Vladislav Shpilevoy 2019-12-29 0:07 ` Nikita Pettik 2019-12-29 15:51 ` Vladislav Shpilevoy 2019-12-29 22:28 ` Nikita Pettik 2019-12-29 22:35 ` Vladislav Shpilevoy 2019-12-30 11:12 ` Sergey Ostanevich 2019-12-30 12:05 ` Nikita Pettik 2019-12-21 20:54 ` Sergey Ostanevich 2019-12-22 14:59 ` Vladislav Shpilevoy [this message] 2019-12-24 12:06 ` Roman Khabibov 2019-11-30 1:03 ` [Tarantool-patches] [PATCH v2 0/2] Add constraint names hash table to space Vladislav Shpilevoy 2019-12-04 16:23 ` [Tarantool-patches] [PATCH v2 0/3] " Roman Khabibov 2019-12-07 16:34 ` Vladislav Shpilevoy
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=9e1947e1-2cba-f94a-476d-210f6c47acbb@tarantool.org \ --to=v.shpilevoy@tarantool.org \ --cc=roman.habibov@tarantool.org \ --cc=sergos@tarantool.org \ --cc=tarantool-patches@dev.tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH v2 2/3] box: make constraint operations transactional' \ /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