Tarantool development patches archive
 help / color / mirror / Atom feed
From: Vladislav Shpilevoy <v.shpilevoy@tarantool.org>
To: "n.pettik" <korablev@tarantool.org>, tarantool-patches@freelists.org
Subject: [tarantool-patches] Re: [PATCH v2 1/5] sql: introduce structs assembling DDL arguments during parsing
Date: Wed, 27 Mar 2019 16:29:15 +0300	[thread overview]
Message-ID: <29be7940-0421-9c09-df78-be9d3977f8d7@tarantool.org> (raw)
In-Reply-To: <39DC5EC0-E609-4DB9-B6A3-9B5824B88C96@tarantool.org>



On 27/03/2019 16:00, n.pettik wrote:
> 
> 
>> On 26 Mar 2019, at 21:06, Vladislav Shpilevoy <v.shpilevoy@tarantool.org> wrote:
>>
>> Thanks for the fixes! This commit LGTM.
>> Lets proceed to the next patches, and start
>> with a rebase, which is going to be hard.
> 
> Ok. Then I would like to clarify some details to avoid wasting time.
> In previous patch version, I used next (reworked) grammar to add
> FK constraints using ALTER:
> 
> cmd ::= alter_table_start alter_table_action .
> 
> alter_table_start ::= ALTER TABLE fullname(Z) . (1)
> 
> alter_table_action ::= add_constraint_def.
> alter_table_action ::= drop_constraint_def.
> alter_table_action ::= rename.
> 
> add_constraint_def ::= add_constraint_start constraint_def.
> 
> add_constraint_start(N) ::= ADD CONSTRAINT nm(Z). (2)
> constraint_def ::= foreign_key_def.
> 
> foreign_key_def ::= FOREIGN KEY LP eidlist(FA) RP REFERENCES nm(T)
>                        eidlist_opt(TA) matcharg(M) refargs(R) defer_subclause_opt(D).
> 
> Now obviously I can’t use it since foreign_key_def should call
> create_fk_def_init() which in turn requires table name and name
> of constraint defined in rules (1) and (2).
> 
> Why I want to use grammar mentioned above: it allows to remove
> code duplication. Rules to parse constraints are defined three times:
> 
> 1. ccons rule - that is part of column definition: …, a INT REFERENCES t1);
> 2. tcons rule - that is part of CREATE TABLE: …, CONSTRAINT c FOREIGN KEY …);
> 3. ALTER TABLE statement
> 
> All of them use the same grammar to parse statement starting from
> REFERENCES keyword. The same applies to UNIQUE and CHECK
> constraints. 
> 
> IDK how to avoid using alter_entity_def_init() and create_constraint_def_init()
> and at the same time divide constraint definition into several stages.
> 
> Ofc, we can still use simple approach like:
> 
> cmd ::= ALTER TABLE fullname(Z) ADD CONSTRAINT nm(Z)  FOREIGN KEY
>              LP eidlist(FA) RP REFERENCES nm(T) eidlist_opt(TA) matcharg(M)
>              refargs(R) defer_subclause_opt(D)
> 
> cmd ::= ALTER TABLE fullname(Z) ADD CONSTRAINT nm(Z)  UNIQUE
>              LP sortlist(X) RP
> 
> cmd ::= ALTER TABLE fullname(Z) ADD CONSTRAINT nm(Z)  PRIMARY KEY
>              LP sortlist(X) RP
> 
> cmd ::= ALTER TABLE fullname(Z) ADD CONSTRAINT nm(Z) CHECK …
> 
> cmd ::= ALTER TABLE fullname(Z) RENAME TO nm(N) .
> 
> Is this OK?
> 

Obviously, it is not. Why can't you define this?

alter_table_start(T) ::= ALTER TABLE fullname(T)
alter_add_constraint(T, N) ::= alter_table_start(T) ADD CONSTRAINT nm(N).

cmd ::= alter_add_constraint(T, N) FOREIGN KEY ...
cmd ::= alter_add_constraint(T, N) UNIQUE LP sortlist(X) RP
cmd ::= alter_add_constraint(T, N) PRIMARY KEY LP sortlist(X) RP
cmd ::= alter_add_constraint(T, N) CHECK ...
cmd ::= alter_table_start RENAME TO nm(N) .

Then inside each cmd you have both table and constraint names.

  reply	other threads:[~2019-03-27 13:29 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-23 17:56 [tarantool-patches] [PATCH v2 0/5] Introduce ALTER TABLE ADD CONSTRAINT UNIQUE/PK Nikita Pettik
2019-01-23 17:56 ` [tarantool-patches] [PATCH v2 1/5] sql: introduce structs assembling DDL arguments during parsing Nikita Pettik
2019-01-24  8:36   ` [tarantool-patches] " Konstantin Osipov
2019-01-24 10:47     ` n.pettik
2019-01-24 12:30       ` Konstantin Osipov
2019-01-29 19:03         ` n.pettik
2019-01-29 19:29   ` Vladislav Shpilevoy
2019-01-29 20:04     ` n.pettik
2019-01-29 20:20       ` Vladislav Shpilevoy
2019-01-29 21:25         ` n.pettik
2019-01-31 19:32     ` n.pettik
2019-02-04 15:25       ` Vladislav Shpilevoy
2019-02-08 14:25         ` n.pettik
2019-02-15 20:13           ` Vladislav Shpilevoy
2019-02-27 22:56             ` n.pettik
2019-03-12 12:50               ` Vladislav Shpilevoy
2019-03-14 18:13                 ` n.pettik
2019-03-25 11:25                   ` Vladislav Shpilevoy
2019-03-26 18:01                     ` n.pettik
2019-03-26 18:06                       ` Vladislav Shpilevoy
2019-03-27 13:00                         ` n.pettik
2019-03-27 13:29                           ` Vladislav Shpilevoy [this message]
2019-03-27 13:44                             ` n.pettik
2019-03-27 14:03                               ` Vladislav Shpilevoy
2019-03-27 14:11                                 ` n.pettik
2019-01-23 17:56 ` [tarantool-patches] [PATCH v2 2/5] sql: rework ALTER TABLE grammar Nikita Pettik
2019-01-23 17:56 ` [tarantool-patches] [PATCH v2 3/5] sql: refactor getNewIid() function Nikita Pettik
2019-01-23 17:56 ` [tarantool-patches] [PATCH v2 4/5] sql: fix error message for improperly created index Nikita Pettik
2019-02-08 17:14   ` [tarantool-patches] " Konstantin Osipov
2019-01-23 17:56 ` [tarantool-patches] [PATCH v2 5/5] sql: introduce ALTER TABLE ADD CONSTRAINT UNIQUE/PRIMARY KEY Nikita Pettik
2019-01-24  8:31   ` [tarantool-patches] " Konstantin Osipov
2019-01-29 19:29   ` Vladislav Shpilevoy
2019-02-08 17:16   ` Konstantin Osipov
2019-02-08 17:36     ` n.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=29be7940-0421-9c09-df78-be9d3977f8d7@tarantool.org \
    --to=v.shpilevoy@tarantool.org \
    --cc=korablev@tarantool.org \
    --cc=tarantool-patches@freelists.org \
    --subject='[tarantool-patches] Re: [PATCH v2 1/5] sql: introduce structs assembling DDL arguments during parsing' \
    /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