From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Roman Khabibov Subject: [PATCH 2/3 v2] sql: add CHAR description without length Date: Wed, 5 Dec 2018 02:47:29 +0300 Message-Id: <55ac10f0c10d33658c8c870aa350be57851d4ac3.1543941445.git.roman.habibov@tarantool.org> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit To: tarantool-patches@freelists.org Cc: vdavydov.dev@gmail.com List-ID: Fix an ability to describe CHAR without specifying the length as it is allowed by standard. It was accidentally broken by this commit: 7752cdfd31f9956a4d6bb0f306c561a0ac73e7ab Needed for #3616 --- src/box/sql/parse.y | 16 +++++++++++-- test/sql-tap/table.test.lua | 47 ++++++++++++++++++++++++++++++++++++- 2 files changed, 60 insertions(+), 3 deletions(-) diff --git a/src/box/sql/parse.y b/src/box/sql/parse.y index 5f64bfe8c..f5e86fba1 100644 --- a/src/box/sql/parse.y +++ b/src/box/sql/parse.y @@ -1486,12 +1486,24 @@ typedef(A) ::= TIME . { A.type = AFFINITY_REAL; } typedef(A) ::= DATETIME . { A.type = AFFINITY_REAL; } %type char_len {int} -typedef(A) ::= CHAR|VARCHAR char_len(B) . { +typedef(A) ::= CHAR char_len(B) . { A.type = AFFINITY_TEXT; (void) B; } -char_len(A) ::= LP INTEGER(B) RP . { +%type vchar_len {int} +typedef(A) ::= VARCHAR vchar_len(B) . { + A.type = AFFINITY_TEXT; + (void) B; +} + +char_len(A) ::= . { + (void) A; +} + +char_len(A) ::= vchar_len(A) . + +vchar_len(A) ::= LP INTEGER(B) RP . { (void) A; (void) B; } diff --git a/test/sql-tap/table.test.lua b/test/sql-tap/table.test.lua index 7fd9bac9f..71645e2e2 100755 --- a/test/sql-tap/table.test.lua +++ b/test/sql-tap/table.test.lua @@ -1,6 +1,6 @@ #!/usr/bin/env tarantool test = require("sqltester") -test:plan(74) +test:plan(78) --!./tcltestrunner.lua -- 2001 September 15 @@ -1393,4 +1393,49 @@ test:do_execsql_test( -- }) + +-- gh-3616 Add char type without length in definitions. + +test:do_execsql_test( + "table-23.1", + [[ + CREATE TABLE T23( + id INT PRIMARY KEY, + u CHAR + ); + ]], { + -- + + -- + }) + +test:do_execsql_test( + "table-23.2", + [[ + INSERT INTO T23 VALUES (1, 'a'), (2, 'b'); + ]], { + -- + + -- + }) + +test:do_execsql_test( + "table-23.3", + [[ + SELECT u FROM T23; + ]], { + -- + "a","b" + -- + }) + +test:do_execsql_test( + "check-23.cleanup", + [[ + DROP TABLE IF EXISTS t23; + ]], { + -- + + -- + }) test:finish_test() -- 2.19.1