From: Kirill Shcherbatov <kshcherbatov@tarantool.org>
To: tarantool-patches@freelists.org,
"n.pettik@corp.mail.ru" <n.pettik@corp.mail.ru>
Subject: [tarantool-patches] Re: [PATCH v2 1/1] sql: disallow returning many rows from subselect
Date: Mon, 2 Jul 2018 10:17:46 +0300 [thread overview]
Message-ID: <80d9fc88-3030-764b-55f2-86d6e5e33f03@tarantool.org> (raw)
In-Reply-To: <F935E91B-A4CB-4ECA-9D1B-994635A71323@tarantool.org>
> Please, use upper-case for all SQL keywords (here and in other SQL tests you modified).
- CREATE TABLE t5(a int primary key, b int);
+ CREATE TABLE t5(a INT PRIMARY KEY, b INT);
- SELECT b from t5 WHERE a = (SELECT a FROM t5 WHERE b=6);
+ SELECT b FROM t5 WHERE a = (SELECT a FROM t5 WHERE b=6);
- SELECT b from t1 where a = (SELECT a FROM t1 WHERE b=6 LIMIT (select b-1 from t1 where a =1));
+ SELECT b FROM t1 WHERE a = (SELECT a FROM t1 WHERE b=6 LIMIT (SELECT b-1 FROM t1 WHERE a =1));
- SELECT b from t1 where a = (SELECT a FROM t1 WHERE b=6 LIMIT (select b from t1 where a =1));
+ SELECT b FROM t1 WHERE a = (SELECT a FROM t1 WHERE b=6 LIMIT (SELECT b FROM t1 WHERE a =1));
next prev parent reply other threads:[~2018-07-02 7:17 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-18 11:55 [tarantool-patches] [PATCH v1 " Kirill Shcherbatov
2018-06-19 17:56 ` [tarantool-patches] " n.pettik
2018-06-27 15:30 ` [tarantool-patches] [PATCH v2 " Kirill Shcherbatov
2018-06-27 15:40 ` Kirill Shcherbatov
2018-06-28 13:04 ` [tarantool-patches] " n.pettik
2018-06-28 17:08 ` Kirill Shcherbatov
2018-06-29 13:15 ` n.pettik
2018-07-02 7:17 ` Kirill Shcherbatov [this message]
2018-07-02 8:45 ` n.pettik
2018-07-02 13:30 ` Vladislav Shpilevoy
2018-07-02 14:14 ` Kirill Shcherbatov
2018-07-02 14:42 ` Vladislav Shpilevoy
2018-07-02 14:52 ` Kirill Shcherbatov
2018-07-02 17:58 ` Vladislav Shpilevoy
2018-07-03 8:06 ` [tarantool-patches] Re: [PATCH v1 " 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=80d9fc88-3030-764b-55f2-86d6e5e33f03@tarantool.org \
--to=kshcherbatov@tarantool.org \
--cc=n.pettik@corp.mail.ru \
--cc=tarantool-patches@freelists.org \
--subject='[tarantool-patches] Re: [PATCH v2 1/1] sql: disallow returning many rows from subselect' \
/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