From: "n.pettik" <korablev@tarantool.org> To: tarantool-patches@freelists.org Cc: "N. Tatunov" <hollow653@gmail.com> Subject: [tarantool-patches] Re: [PATCH] sql: Remove 'BEGIN TRANSACTION' Date: Thu, 19 Jul 2018 03:24:08 +0300 [thread overview] Message-ID: <D0B70AE8-D0C6-4B45-9E7A-E14E8FE5D27D@tarantool.org> (raw) In-Reply-To: <CAEi+_apz==eT3sj08-Gnzcy7pJm87QqTckkcgh-rbt11QUcm9w@mail.gmail.com> [-- Attachment #1: Type: text/plain, Size: 1300 bytes --] > diff --git a/extra/lempar.c b/extra/lempar.c > index 00fd79c..d043e39 100644 > --- a/extra/lempar.c > +++ b/extra/lempar.c > @@ -336,8 +336,8 @@ void *ParseAlloc(void *(*mallocProc)(YYMALLOCARGTYPE)){ > if( pParser ){ > #ifdef YYTRACKMAXSTACKDEPTH > pParser->yyhwm = 0; > - pParser->is_fallback_failed = false; > #endif > + pParser->is_fallback_failed = false; Could you please explain this code movement? > +++ b/test/sql-tap/start-transaction.test.lua > @@ -0,0 +1,266 @@ > +#!/usr/bin/env tarantool > +test = require("sqltester") > +test:plan(21) > + > +test:do_catchsql_test( > + "start-transaction-1.0", > + [[ > + CREATE TABLE IF NOT EXISTS t(id int PRIMARY KEY); > + DELETE FROM t; > + BEGIN; > + INSERT INTO t VALUES (1); > + INSERT INTO t VALUES (2); > + COMMIT; > + ]], { > + -- <start-transaction-1.0> > + 1, "near \"BEGIN\": syntax error" > + -- <start-transaction-1.0> > + }) > + > +test:do_execsql_test( > + "start-transaction-1.1", > + [[ > + SELECT * FROM t; > + ]], { > + -- <start-transaction-1.1> > + > + -- <start-transaction-1.1> > + }) > + > +test:do_catchsql_test( > + "start-transaction-1.2", > + [[ > + CREATE TABLE IF NOT EXISTS t(id int primary key); > + delete from t; We write SQL queries in upper-case. Fix it in other places too. [-- Attachment #2: Type: text/html, Size: 4603 bytes --]
next prev parent reply other threads:[~2018-07-19 0:24 UTC|newest] Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top 2018-07-05 10:42 [tarantool-patches] " N.Tatunov 2018-07-05 11:48 ` [tarantool-patches] " Nikita Tatunov 2018-07-09 15:35 ` Alexander Turenko 2018-07-13 2:15 ` n.pettik 2018-07-16 12:22 ` Nikita Tatunov 2018-07-19 0:24 ` n.pettik [this message] 2018-07-19 11:48 ` Nikita Tatunov 2018-07-19 14:03 ` n.pettik 2018-07-19 15:44 ` Vladislav Shpilevoy 2018-07-19 18:08 ` Nikita Tatunov 2018-07-19 18:13 ` Vladislav Shpilevoy 2018-07-20 13:24 ` 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=D0B70AE8-D0C6-4B45-9E7A-E14E8FE5D27D@tarantool.org \ --to=korablev@tarantool.org \ --cc=hollow653@gmail.com \ --cc=tarantool-patches@freelists.org \ --subject='[tarantool-patches] Re: [PATCH] sql: Remove '\''BEGIN TRANSACTION'\''' \ /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