/* Copyright 2017 Google Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package sqlparser import ( "bytes" "fmt" "strings" "testing" ) var ( validSQL = []struct { input string output string }{{ input: "select 1", }, { input: "insert /* simple */ into a values (1)", }, { input: "select 1 from t", }, { input: "select .1 from t", }, { input: "select 1.2e1 from t", }, { input: "select 1.2e+1 from t", }, { input: "select 1.2e-1 from t", }, { input: "select 08.3 from t", }, { input: "select -1 from t where b = -2", }, { input: "select - -1 from t", output: "select 1 from t", }, { input: "select 1 from t // aa\n", output: "select 1 from t", }, { input: "select 1 from t -- aa\n", output: "select 1 from t", }, { input: "select 1 from t # aa\n", output: "select 1 from t", }, { input: "select 1 --aa\nfrom t", output: "select 1 from t", }, { input: "select 1 #aa\nfrom t", output: "select 1 from t", }, { input: "select /* simplest */ 1 from t", }, { input: "select /* double star **/ 1 from t", }, { input: "select /* double */ /* comment */ 1 from t", }, { input: "select /* back-quote keyword */ `By` from t", }, { input: "select /* back-quote num */ `2a` from t", }, { input: "select /* back-quote . */ `a.b` from t", }, { input: "select /* back-quote back-quote */ `a``b` from t", }, { input: "select /* back-quote unnecessary */ 1 from `t`", output: "select /* back-quote unnecessary */ 1 from t", }, { input: "select /* back-quote idnum */ 1 from `a1`", output: "select /* back-quote idnum */ 1 from a1", }, { input: "select /* @ */ @@a from b", }, { input: "select /* \\0 */ '\\0' from a", }, { input: "select 1 /* drop this comment */ from t", output: "select 1 from t", }, { input: "select /* union */ 1 from t union select 1 from t", }, { input: "select /* double union */ 1 from t union select 1 from t union select 1 from t", }, { input: "select /* union all */ 1 from t union all select 1 from t", }, { input: "(select /* union parenthesized select */ 1 from t order by a) union select 1 from t", output: "(select /* union parenthesized select */ 1 from t order by a asc) union select 1 from t", }, { input: "select /* union parenthesized select 2 */ 1 from t union (select 1 from t)", }, { input: "select /* union order by */ 1 from t union select 1 from t order by a", output: "select /* union order by */ 1 from t union select 1 from t order by a asc", }, { input: "select /* union with limit on lhs */ 1 from t limit 1 union select 1 from t", }, { input: "(select id, a from t order by id limit 1) union (select id, b as a from s order by id limit 1) order by a limit 1", output: "(select id, a from t order by id asc limit 1) union (select id, b as a from s order by id asc limit 1) order by a asc limit 1", }, { input: "select a from (select 1 as a from tbl1 union select 2 from tbl2) as t", }, { input: "select * from t1 join (select * from t2 union select * from t3) as t", }, { // Ensure this doesn't generate: ""select * from t1 join t2 on a = b join t3 on a = b". input: "select * from t1 join t2 on a = b join t3", }, { input: "select * from t1 where col in (select 1 from dual union select 2 from dual)", }, { input: "select * from t1 where exists (select a from t2 union select b from t3)", }, { input: "select /* distinct */ distinct 1 from t", }, { input: "select /* select list */ 1, 2 from t", }, { input: "select /* * */ * from t", }, { input: "select /* a.* */ a.* from t", }, { input: "select /* a.b.* */ a.b.* from t", }, { input: "select /* column alias */ a b from t", output: "select /* column alias */ a as b from t", }, { input: "select /* column alias with as */ a as b from t", }, { input: "select /* keyword column alias */ a as `By` from t", }, { input: "select /* column alias as string */ a as \"b\" from t", output: "select /* column alias as string */ a as b from t", }, { input: "select /* column alias as string without as */ a \"b\" from t", output: "select /* column alias as string without as */ a as b from t", }, { input: "select /* a.* */ a.* from t", }, { input: "select /* `By`.* */ `By`.* from t", }, { input: "select /* select with bool expr */ a = b from t", }, { input: "select /* case_when */ case when a = b then c end from t", }, { input: "select /* case_when_else */ case when a = b then c else d end from t", }, { input: "select /* case_when_when_else */ case when a = b then c when b = d then d else d end from t", }, { input: "select /* case */ case aa when a = b then c end from t", }, { input: "select /* parenthesis */ 1 from (t)", }, { input: "select /* parenthesis multi-table */ 1 from (t1, t2)", }, { input: "select /* table list */ 1 from t1, t2", }, { input: "select /* parenthessis in table list 1 */ 1 from (t1), t2", }, { input: "select /* parenthessis in table list 2 */ 1 from t1, (t2)", }, { input: "select /* table alias */ 1 from t t1", output: "select /* table alias */ 1 from t as t1", }, { input: "select /* table alias with as */ 1 from t as t1", }, { input: "select /* string table alias */ 1 from t as 't1'", output: "select /* string table alias */ 1 from t as t1", }, { input: "select /* string table alias without as */ 1 from t 't1'", output: "select /* string table alias without as */ 1 from t as t1", }, { input: "select /* keyword table alias */ 1 from t as `By`", }, { input: "select /* join */ 1 from t1 join t2", }, { input: "select /* join on */ 1 from t1 join t2 on a = b", }, { input: "select /* join on */ 1 from t1 join t2 using (a)", }, { input: "select /* inner join */ 1 from t1 join t2", }, { input: "select /* inner join */ 1 from t1 inner join t2", }, { input: "select /* cross join */ 1 from t1 cross join t2", }, { input: "select /* left join */ 1 from t1 left join t2 on a = b", }, { input: "select /* left join */ 1 from t1 left join t2 using (a)", }, { input: "select /* left outer join */ 1 from t1 left outer join t2 on a = b", output: "select /* left outer join */ 1 from t1 left join t2 on a = b", }, { input: "select /* left outer join */ 1 from t1 left outer join t2 using (a)", output: "select /* left outer join */ 1 from t1 left join t2 using (a)", }, { input: "select /* natural join */ 1 from t1 natural join t2", }, { input: "select /* natural left join */ 1 from t1 natural left join t2", }, { input: "select /* natural left outer join */ 1 from t1 natural left join t2", output: "select /* natural left outer join */ 1 from t1 natural left join t2", }, { input: "select /* join on */ 1 from t1 join t2 on a = b", }, { input: "select /* join using */ 1 from t1 join t2 using (a)", }, { input: "select /* join using (a, b, c) */ 1 from t1 join t2 using (a, b, c)", }, { input: "select /* s.t */ 1 from s.t", }, { input: "select /* keyword schema & table name */ 1 from `By`.`bY`", }, { input: "select /* select in from */ 1 from (select 1 from t) as a", }, { input: "select /* select in from with no as */ 1 from (select 1 from t) a", output: "select /* select in from with no as */ 1 from (select 1 from t) as a", }, { input: "select /* where */ 1 from t where a = b", }, { input: "select /* and */ 1 from t where a = b and a = c", }, { input: "select /* && */ 1 from t where a = b && a = c", output: "select /* && */ 1 from t where a = b and a = c", }, { input: "select /* or */ 1 from t where a = b or a = c", }, { input: "select /* || */ 1 from t where a = b || a = c", output: "select /* || */ 1 from t where a = b or a = c", }, { input: "select /* not */ 1 from t where not a = b", }, { input: "select /* ! */ 1 from t where a = !1", }, { input: "select /* bool is */ 1 from t where a = b is null", }, { input: "select /* bool is not */ 1 from t where a = b is not false", }, { input: "select /* true */ 1 from t where true", }, { input: "select /* false */ 1 from t where false", }, { input: "select /* false on left */ 1 from t where false = 0", }, { input: "select /* exists */ 1 from t where exists (select 1 from t)", }, { input: "select /* (boolean) */ 1 from t where not (a = b)", }, { input: "select /* in value list */ 1 from t where a in (b, c)", }, { input: "select /* in select */ 1 from t where a in (select 1 from t)", }, { input: "select /* not in */ 1 from t where a not in (b, c)", }, { input: "select /* like */ 1 from t where a like b", }, { input: "select /* like escape */ 1 from t where a like b escape '!'", }, { input: "select /* not like */ 1 from t where a not like b", }, { input: "select /* not like escape */ 1 from t where a not like b escape '$'", }, { input: "select /* regexp */ 1 from t where a regexp b", }, { input: "select /* not regexp */ 1 from t where a not regexp b", }, { input: "select /* rlike */ 1 from t where a rlike b", output: "select /* rlike */ 1 from t where a regexp b", }, { input: "select /* not rlike */ 1 from t where a not rlike b", output: "select /* not rlike */ 1 from t where a not regexp b", }, { input: "select /* between */ 1 from t where a between b and c", }, { input: "select /* not between */ 1 from t where a not between b and c", }, { input: "select /* is null */ 1 from t where a is null", }, { input: "select /* is not null */ 1 from t where a is not null", }, { input: "select /* is true */ 1 from t where a is true", }, { input: "select /* is not true */ 1 from t where a is not true", }, { input: "select /* is false */ 1 from t where a is false", }, { input: "select /* is not false */ 1 from t where a is not false", }, { input: "select /* < */ 1 from t where a < b", }, { input: "select /* <= */ 1 from t where a <= b", }, { input: "select /* >= */ 1 from t where a >= b", }, { input: "select /* > */ 1 from t where a > b", }, { input: "select /* != */ 1 from t where a != b", }, { input: "select /* <> */ 1 from t where a <> b", }, { input: "select /* != */ 1 from t where a != b", }, { input: "select /* single value expression list */ 1 from t where a in (b)", }, { input: "select /* select as a value expression */ 1 from t where a = (select a from t)", }, { input: "select /* parenthesised value */ 1 from t where a = (b)", }, { input: "select /* over-parenthesize */ ((1)) from t where ((a)) in (((1))) and ((a, b)) in ((((1, 1))), ((2, 2)))", }, { input: "select /* dot-parenthesize */ (a.b) from t where (b.c) = 2", }, { input: "select /* & */ 1 from t where a = b & c", }, { input: "select /* & */ 1 from t where a = b & c", }, { input: "select /* | */ 1 from t where a = b | c", }, { input: "select /* ^ */ 1 from t where a = b ^ c", }, { input: "select /* + */ 1 from t where a = b + c", }, { input: "select /* - */ 1 from t where a = b - c", }, { input: "select /* * */ 1 from t where a = b * c", }, { input: "select /* / */ 1 from t where a = b / c", }, { input: "select /* % */ 1 from t where a = b % c", }, { input: "select /* div */ 1 from t where a = b div c", }, { input: "select /* MOD */ 1 from t where a = b MOD c", output: "select /* MOD */ 1 from t where a = b % c", }, { input: "select /* << */ 1 from t where a = b << c", }, { input: "select /* >> */ 1 from t where a = b >> c", }, { input: "select /* % no space */ 1 from t where a = b%c", output: "select /* % no space */ 1 from t where a = b % c", }, { input: "select /* u+ */ 1 from t where a = +b", }, { input: "select /* u- */ 1 from t where a = -b", }, { input: "select /* u~ */ 1 from t where a = ~b", }, { input: "select /* empty function */ 1 from t where a = b()", }, { input: "select /* function with 1 param */ 1 from t where a = b(c)", }, { input: "select /* function with many params */ 1 from t where a = b(c, d)", }, { input: "select /* function with distinct */ count(distinct a) from t", }, { input: "select /* if as func */ 1 from t where a = if(b)", }, { input: "select /* mod as func */ a from tab where mod(b, 2) = 0", }, { input: "select /* database as func no param */ database() from t", }, { input: "select /* database as func 1 param */ database(1) from t", }, { input: "select /* a */ a from t", }, { input: "select /* a.b */ a.b from t", }, { input: "select /* a.b.c */ a.b.c from t", }, { input: "select /* keyword a.b */ `By`.`bY` from t", }, { input: "select /* string */ 'a' from t", }, { input: "select /* double quoted string */ \"a\" from t", output: "select /* double quoted string */ 'a' from t", }, { input: "select /* quote quote in string */ 'a''a' from t", output: "select /* quote quote in string */ 'a''a' from t", }, { input: "select /* double quote quote in string */ \"a\"\"a\" from t", output: "select /* double quote quote in string */ 'a\\\"a' from t", }, { input: "select /* quote in double quoted string */ \"a'a\" from t", output: "select /* quote in double quoted string */ 'a''a' from t", }, { input: "select /* backslash quote in string */ 'a''a' from t", output: "select /* backslash quote in string */ 'a''a' from t", }, { input: "select /* literal backslash in string */ 'a\\\\na' from t", }, { input: "select /* non-escape */ '\\x' from t", }, { input: "select /* unescaped backslash */ '\\n' from t", }, { input: "select /* value argument */ :a from t", }, { input: "select /* value argument with digit */ :a1 from t", }, { input: "select /* value argument with dot */ :a.b from t", }, { input: "select /* positional argument */ ? from t", output: "select /* positional argument */ :v1 from t", }, { input: "select /* multiple positional arguments */ ?, ? from t", output: "select /* multiple positional arguments */ :v1, :v2 from t", }, { input: "select /* list arg */ * from t where a in ::list", }, { input: "select /* list arg not in */ * from t where a not in ::list", }, { input: "select /* null */ null from t", }, { input: "select /* octal */ 010 from t", }, { input: "select /* hex */ x'f0A1' from t", output: "select /* hex */ X'f0A1' from t", }, { input: "select /* hex caps */ X'F0a1' from t", }, { input: "select /* 0x */ 0xf0 from t", }, { input: "select /* float */ 0.1 from t", }, { input: "select /* group by */ 1 from t group by a", }, { input: "select /* having */ 1 from t having a = b", }, { input: "select /* simple order by */ 1 from t order by a", output: "select /* simple order by */ 1 from t order by a asc", }, { input: "select /* order by asc */ 1 from t order by a asc", }, { input: "select /* order by desc */ 1 from t order by a desc", }, { input: "select /* order by null */ 1 from t order by null", }, { input: "select /* limit a */ 1 from t limit a", }, { input: "select /* limit a,b */ 1 from t limit a, b", }, { input: "select /* binary unary */ a- -b from t", output: "select /* binary unary */ a - -b from t", }, { input: "select /* - - */ - -b from t", }, { input: "select /* interval */ adddate('2008-01-02', interval 31 day) from t", }, { input: "select /* interval keyword */ adddate('2008-01-02', interval 1 year) from t", }, { input: "select /* dual */ 1 from dual", }, { input: "select /* Dual */ 1 from Dual", output: "select /* Dual */ 1 from dual", }, { input: "select /* DUAL */ 1 from Dual", output: "select /* DUAL */ 1 from dual", }, { input: "select /* column as bool in where */ a from t where b", }, { input: "select /* OR of columns in where */ * from t where a or b", }, { input: "select /* OR of mixed columns in where */ * from t where a = 5 or b and c is not null", }, { input: "select /* OR in select columns */ (a or b) from t where c = 5", }, { input: "select /* bool as select value */ a, true from t", }, { input: "select /* bool column in ON clause */ * from t join s on t.id = s.id and s.foo where t.bar", }, { input: "select /* bool in order by */ * from t order by a is null or b asc", }, { input: "select /* string in case statement */ if(max(case a when 'foo' then 1 else 0 end) = 1, 'foo', 'bar') as foobar from t", }, { input: "select /*!40101 * from*/ t", output: "select * from t", }, { input: "select /*! * from*/ t", output: "select * from t", }, { input: "select /*!* from*/ t", output: "select * from t", }, { input: "select /*!401011 from*/ t", output: "select 1 from t", }, { input: "select /* dual */ 1 from dual", }, { input: "insert /* a.b */ into a.b values (1)", }, { input: "insert /* multi-value */ into a values (1, 2)", }, { input: "insert /* multi-value list */ into a values (1, 2), (3, 4)", }, { input: "insert /* no values */ into a values ()", }, { input: "insert /* set */ into a set a = 1, b = 2", output: "insert /* set */ into a(a, b) values (1, 2)", }, { input: "insert /* set default */ into a set a = default, b = 2", output: "insert /* set default */ into a(a, b) values (default, 2)", }, { input: "insert /* value expression list */ into a values (a + 1, 2 * 3)", }, { input: "insert /* default */ into a values (default, 2 * 3)", }, { input: "insert /* column list */ into a(a, b) values (1, 2)", }, { input: "insert into a(a, b) values (1, ifnull(null, default(b)))", }, { input: "insert /* qualified column list */ into a(a, b) values (1, 2)", }, { input: "insert /* qualified columns */ into t (t.a, t.b) values (1, 2)", output: "insert /* qualified columns */ into t(a, b) values (1, 2)", }, { input: "insert /* select */ into a select b, c from d", }, { input: "insert /* no cols & paren select */ into a(select * from t)", output: "insert /* no cols & paren select */ into a select * from t", }, { input: "insert /* cols & paren select */ into a(a,b,c) (select * from t)", output: "insert /* cols & paren select */ into a(a, b, c) select * from t", }, { input: "insert /* cols & union with paren select */ into a(b, c) (select d, e from f) union (select g from h)", }, { input: "insert /* bool in insert value */ into a values (1, true, false)", }, { input: "update /* simple */ a set b = 3", }, { input: "update /* a.b */ a.b set b = 3", }, { input: "update /* list */ a set b = 3, c = 4", }, { input: "update /* expression */ a set b = 3 + 4", }, { input: "update /* where */ a set b = 3 where a = b", }, { input: "update /* order */ a set b = 3 order by c desc", }, { input: "update /* limit */ a set b = 3 limit c", }, { input: "update /* bool in update */ a set b = true", }, { input: "update /* bool expr in update */ a set b = 5 > 2", }, { input: "update /* bool in update where */ a set b = 5 where c", }, { input: "update /* table qualifier */ a set a.b = 3", }, { input: "update /* table qualifier */ a set t.a.b = 3", }, { input: "update /* table alias */ tt aa set aa.cc = 3", output: "update /* table alias */ tt as aa set aa.cc = 3", }, { input: "update (select id from foo) subqalias set id = 4", output: "update (select id from foo) as subqalias set id = 4", }, { input: "update foo f, bar b set f.id = b.id where b.name = 'test'", output: "update foo as f, bar as b set f.id = b.id where b.name = 'test'", }, { input: "update foo f join bar b on f.name = b.name set f.id = b.id where b.name = 'test'", output: "update foo as f join bar as b on f.name = b.name set f.id = b.id where b.name = 'test'", }, { input: "delete /* simple */ from a", }, { input: "delete /* a.b */ from a.b", }, { input: "delete /* where */ from a where a = b", }, { input: "delete /* order */ from a order by b desc", }, { input: "delete /* limit */ from a limit b", }, { input: "alter table a rename to b", }, { input: "alter table a add column id int", output: "alter table a", }, { input: "alter table a add id int", output: "alter table a", }, { input: "create table a", }, { input: "create table a (\n\t`a` int\n)", output: "create table a (\n\ta int\n)", }, { input: "create table `by` (\n\t`by` char\n)", }, { input: "create table if not exists a (\n\t`a` int\n)", output: "create table a (\n\ta int\n)", }, { input: "create table a ignore me this is garbage", output: "create table a", }, { input: "create table a (a int, b char, c garbage)", output: "create table a", }, { input: "create index a on b", output: "create index on b", }, { input: "create unique index a on b", output: "create index on b", }, { input: "drop table a", }, { input: "drop table if exists a", }, { input: "drop index if exists a.b", }, { input: "show create table t", }, { input: "show index from table t", output: "show index t", }, { input: "show table status", }, { input: "show tables", }, { input: "describe foobar", output: "show table foobar", }, { input: "desc foobar", output: "show table foobar", }, { input: "select /* EQ true */ 1 from t where a = true", }, { input: "select /* EQ false */ 1 from t where a = false", }, { input: "select /* NE true */ 1 from t where a != true", }, { input: "select /* NE false */ 1 from t where a != false", }, { input: "select /* LT true */ 1 from t where a < true", }, { input: "select /* LT false */ 1 from t where a < false", }, { input: "select /* GT true */ 1 from t where a > true", }, { input: "select /* GT false */ 1 from t where a > false", }, { input: "select /* LE true */ 1 from t where a <= true", }, { input: "select /* LE false */ 1 from t where a <= false", }, { input: "select /* GE true */ 1 from t where a >= true", }, { input: "select /* GE false */ 1 from t where a >= false", }, { input: "select /* drop trailing semicolon */ 1 from dual;", output: "select /* drop trailing semicolon */ 1 from dual", }, { input: "select name, group_concat(score) from t group by name", }, { input: "select name, group_concat(distinct id, score order by id desc separator ':') from t group by name", }} ) func TestValid(t *testing.T) { for _, tcase := range validSQL { if tcase.output == "" { tcase.output = tcase.input } tree, err := Parse(tcase.input) if err != nil { t.Errorf("Parse(%q) err: %v, want nil", tcase.input, err) continue } out := String(tree) if out != tcase.output { t.Errorf("Parse(%q) = %q, want: %q", tcase.input, out, tcase.output) } // This test just exercises the tree walking functionality. // There's no way automated way to verify that a node calls // all its children. But we can examine code coverage and // ensure that all walkSubtree functions were called. Walk(func(node SQLNode) (bool, error) { return true, nil }, tree) } } func TestCaseSensitivity(t *testing.T) { validSQL := []struct { input string output string }{{ input: "create table A (\n\t`B` int\n)", output: "create table A (\n\tB int\n)", }, { input: "create index b on A", output: "create index on A", }, { input: "alter table A rename to B", }, { input: "drop table B", output: "drop table B", }, { input: "drop table if exists B", }, { input: "drop index if exists b.A", }, { input: "select a from B", }, { input: "select A as B from C", }, { input: "select B.* from c", }, { input: "select B.A from c", }, { input: "select * from B as C", }, { input: "select * from A.B", }, { input: "update A set b = 1", }, { input: "update A.B set b = 1", }, { input: "select A() from b", }, { input: "select A(B, C) from b", }, { input: "select A(distinct B, C) from b", }, { // IF is an exception. It's always lower-cased. input: "select IF(B, C) from b", output: "select if(B, C) from b", }, { input: "insert into A(A, B) values (1, 2)", }, { input: "CREATE TABLE A (\n\t`A` int\n)", output: "create table A (\n\tA int\n)", }} for _, tcase := range validSQL { if tcase.output == "" { tcase.output = tcase.input } tree, err := Parse(tcase.input) if err != nil { t.Errorf("input: %s, err: %v", tcase.input, err) continue } out := String(tree) if out != tcase.output { t.Errorf("out: %s, want %s", out, tcase.output) } } } func TestKeywords(t *testing.T) { validSQL := []struct { input string output string }{{ input: "select a, current_date from t", output: "select a, current_date from t", }, { input: "select replace(a, 'foo', 'bar') from t", }, { input: "update t set a = replace('1234', '2', '1')", }, { input: "update t set d = adddate(date('2003-12-31 01:02:03'), interval 5 days)", }, { input: "insert /* qualified function */ into t(a, b) values (test.PI(), 'b')", }, { input: "select /* keyword in qualified id */ * from t join z on t.key = z.key", output: "select /* keyword in qualified id */ * from t join z on t.`key` = z.`key`", }} for _, tcase := range validSQL { if tcase.output == "" { tcase.output = tcase.input } tree, err := Parse(tcase.input) if err != nil { t.Errorf("input: %s, err: %v", tcase.input, err) continue } out := String(tree) if out != tcase.output { t.Errorf("out: %s, want %s", out, tcase.output) } } } func TestConvert(t *testing.T) { validSQL := []struct { input string output string }{{ input: "select cast('abc' as date) from t", }, { input: "select cast('abc' as char(4)) from t", }, { input: "select cast('abc' as char) from t", }, { input: "select cast('abc' as nchar(4)) from t", }, { input: "select cast('abc' as nchar) from t", }, { input: "select cast('abc' as signed) from t", }, { input: "select cast('abc' as signed integer) from t", output: "select cast('abc' as signed) from t", }, { input: "select cast('abc' as unsigned) from t", }, { input: "select cast('abc' as unsigned integer) from t", output: "select cast('abc' as unsigned) from t", }, { input: "select cast('abc' as decimal(3, 4)) from t", }, { input: "select cast('abc' as decimal(4)) from t", }, { input: "select cast('abc' as decimal) from t", }, { input: "select cast('abc' as date) from t", }, { input: "select cast('abc' as time(4)) from t", }, { input: "select cast('abc' as time) from t", }, { input: "select cast('abc' as datetime(9)) from t", }, { input: "select cast('abc' as datetime) from t", }} for _, tcase := range validSQL { if tcase.output == "" { tcase.output = tcase.input } tree, err := Parse(tcase.input) if err != nil { t.Errorf("input: %s, err: %v", tcase.input, err) continue } out := String(tree) if out != tcase.output { t.Errorf("out: %s, want %s", out, tcase.output) } } invalidSQL := []struct { input string output string }{{ input: "select cast from t", output: "syntax error at position 17 near 'from'", }, { input: "select cast('foo', decimal) from t", output: "syntax error at position 19", }, { input: "select cast('abc' as datetime(4+9)) from t", output: "syntax error at position 33", }, { input: "select cast('abc', decimal(4+9)) from t", output: "syntax error at position 19", }} for _, tcase := range invalidSQL { _, err := Parse(tcase.input) if err == nil || err.Error() != tcase.output { t.Errorf("%s: %v, want %s", tcase.input, err, tcase.output) } } } func TestSubStr(t *testing.T) { validSQL := []struct { input string output string }{{ input: "select substr(a, 1) from t", }, { input: "select substr(a, 1, 6) from t", }} for _, tcase := range validSQL { if tcase.output == "" { tcase.output = tcase.input } tree, err := Parse(tcase.input) if err != nil { t.Errorf("input: %s, err: %v", tcase.input, err) continue } out := String(tree) if out != tcase.output { t.Errorf("out: %s, want %s", out, tcase.output) } } } func TestCreateTable(t *testing.T) { validSQL := []string{ // test all the data types and options "create table t (\n" + " col_tinyint tinyint auto_increment,\n" + " col_tinyint3 tinyint(3) unsigned,\n" + " col_smallint smallint,\n" + " col_smallint4 smallint(4) zerofill,\n" + " col_mediumint mediumint,\n" + " col_mediumint5 mediumint(5) unsigned not null,\n" + " col_int int,\n" + " col_int10 int(10) not null,\n" + " col_integer integer,\n" + " col_bigint bigint,\n" + " col_bigint10 bigint(10) zerofill not null default 10,\n" + " col_real real,\n" + " col_real2 real(1,2) not null default 1.23,\n" + " col_double double,\n" + " col_double2 double(3,4) not null default 1.23,\n" + " col_float float,\n" + " col_float2 float(3,4) not null default 1.23,\n" + " col_decimal decimal,\n" + " col_decimal2 decimal(2),\n" + " col_decimal3 decimal(2,3),\n" + " col_numeric numeric,\n" + " col_numeric2 numeric(2),\n" + " col_numeric3 numeric(2,3),\n" + " col_date date,\n" + " col_time time,\n" + " col_timestamp timestamp,\n" + " col_datetime datetime,\n" + " col_year year,\n" + " col_char char,\n" + " col_char2 char(2),\n" + " col_char3 char(3),\n" + " col_char4 char(4),\n" + " col_varchar varchar,\n" + " col_varchar2 varchar(2),\n" + " col_varchar3 varchar(3),\n" + " col_varchar4 varchar(4),\n" + " col_tinyblob tinyblob,\n" + " col_blob blob,\n" + " col_mediumblob mediumblob,\n" + " col_longblob longblob,\n" + " col_tinytext tinytext,\n" + " col_text text,\n" + " col_mediumtext mediumtext,\n" + " col_longtext longtext,\n" + " col_text text\n" + ")", // test defaults "create table t (\n" + " i1 int default 1,\n" + " i2 int default null,\n" + " f1 float default 1.23,\n" + " s1 varchar default 'c',\n" + " s2 varchar default 'this is a string',\n" + " s3 varchar default null,\n" + " s4 timestamp default current_timestamp\n" + ")", // test key field options "create table t (\n" + " id int auto_increment primary key,\n" + " username varchar unique key,\n" + " email varchar unique,\n" + " full_name varchar key,\n" + " time1 timestamp,\n" + " time2 timestamp default current_timestamp\n" + ")", // test defining indexes separately "create table t (\n" + " id int auto_increment,\n" + " username varchar,\n" + " email varchar,\n" + " full_name varchar,\n" + " status_nonkeyword varchar,\n" + " primary key (id),\n" + " unique key by_username (username),\n" + " unique by_username2 (username),\n" + " unique index by_username3 (username),\n" + " index by_status (status_nonkeyword),\n" + " key by_full_name (full_name)\n" + ")", // test that indexes support USING "create table t (\n" + " id int auto_increment,\n" + " username varchar,\n" + " email varchar,\n" + " full_name varchar,\n" + " status_nonkeyword varchar,\n" + " primary key (id),\n" + " unique key by_username (username),\n" + " unique by_username2 (username),\n" + " unique index by_username3 (username),\n" + " index by_status (status_nonkeyword),\n" + " key by_full_name (full_name)\n" + ")", // test other index options "create table t (\n" + " id int auto_increment,\n" + " username varchar,\n" + " email varchar,\n" + " primary key (id),\n" + " unique key by_username (username),\n" + " unique index by_username4 (username),\n" + " unique index by_username4 (username)\n" + ")", // multi-column indexes "create table t (\n" + " id int auto_increment,\n" + " username varchar,\n" + " email varchar,\n" + " full_name varchar,\n" + " a int,\n" + " b int,\n" + " c int,\n" + " primary key (id, username),\n" + " unique key by_abc (a, b, c),\n" + " key by_email (email(10), username)\n" + ")", // table options "create table t (\n" + " id int auto_increment\n" + ") engine InnoDB,\n" + " auto_increment 123,\n" + " avg_row_length 1,\n" + " default character set utf8mb4,\n" + " character set latin1,\n" + " checksum 0,\n" + " default collate binary,\n" + " collate ascii_bin,\n" + " comment 'this is a comment',\n" + " compression 'zlib',\n" + " connection 'connect_string',\n" + " data directory 'absolute path to directory',\n" + " delay_key_write 1,\n" + " encryption 'n',\n" + " index directory 'absolute path to directory',\n" + " insert_method no,\n" + " max_rows 100,\n" + " min_rows 10,\n" + " pack_keys 0,\n" + " password 'sekret',\n" + " row_format default,\n" + " stats_auto_recalc default,\n" + " stats_persistent 0,\n" + " stats_sample_pages 1,\n" + " tablespace tablespace_name storage disk,\n" + " tablespace tablespace_name\n", } for _, sql := range validSQL { sql = strings.TrimSpace(sql) tree, err := ParseStrictDDL(sql) if err != nil { t.Errorf("input: %s, err: %v", sql, err) continue } got := String(tree.(*DDL)) if sql != got { t.Errorf("want:\n%s\ngot:\n%s", sql, got) } } sql := "create table t garbage" tree, err := Parse(sql) if err != nil { t.Errorf("input: %s, err: %v", sql, err) } tree, err = ParseStrictDDL(sql) if tree != nil || err == nil { t.Errorf("ParseStrictDDL unexpectedly accepted input %s", sql) } } func TestCreateTableEscaped(t *testing.T) { testCases := []struct { input string output string }{{ input: "create table `a`(`id` int, primary key(`id`))", output: "create table a (\n" + "\tid int,\n" + "\tprimary key (id)\n" + ")", }, { input: "create table `insert`(`update` int, primary key(`delete`))", output: "create table `insert` (\n" + "\t`update` int,\n" + "\tprimary key (`delete`)\n" + ")", }} for _, tcase := range testCases { tree, err := ParseStrictDDL(tcase.input) if err != nil { t.Errorf("input: %s, err: %v", tcase.input, err) continue } if got, want := String(tree.(*DDL)), tcase.output; got != want { t.Errorf("Parse(%s):\n%s, want\n%s", tcase.input, got, want) } } } var ( invalidSQL = []struct { input string output string excludeMulti bool // Don't use in the ParseNext multi-statement parsing tests. }{{ input: "select $ from t", output: "syntax error at position 9 near '$'", }, { input: "select : from t", output: "syntax error at position 9 near ':'", }, { input: "select 0xH from t", output: "syntax error at position 10 near '0x'", }, { input: "select x'78 from t", output: "syntax error at position 12 near '78'", }, { input: "select x'777' from t", output: "syntax error at position 14 near '777'", }, { input: "select * from t where :1 = 2", output: "syntax error at position 24 near ':'", }, { input: "select * from t where :. = 2", output: "syntax error at position 24 near ':'", }, { input: "select * from t where ::1 = 2", output: "syntax error at position 25 near '::'", }, { input: "select * from t where ::. = 2", output: "syntax error at position 25 near '::'", }, { input: "update a set c = values(1)", output: "syntax error at position 26 near '1'", }, { input: "select(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F" + "(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(" + "F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F" + "(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(" + "F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F" + "(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(" + "F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F" + "(F(F(F(F(F(F(F(F(F(F(F(F(", output: "max nesting level reached at position 406", }, { input: "select(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F" + "(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(" + "F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F" + "(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(" + "F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F" + "(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(" + "F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F(F" + "(F(F(F(F(F(F(F(F(F(F(F(", output: "syntax error at position 404", }, { // This construct is considered invalid due to a grammar conflict. input: "insert into a select * from b join c on duplicate key update d=e", output: "syntax error at position 54 near 'key'", }, { input: "select * from a left join b", output: "syntax error at position 28", }, { input: "select * from a natural join b on c = d", output: "syntax error at position 34 near 'on'", }, { input: "select * from a natural join b using (c)", output: "syntax error at position 37 near 'using'", }, { input: "insert into a values (select * from b)", output: "syntax error at position 29 near 'select'", }, { input: "select mod from t", output: "syntax error at position 16 near 'from'", }, { input: "select 1 from t where div 5", output: "syntax error at position 26 near 'div'", }, { input: "select /* reserved keyword as unqualified column */ * from t where key = 'test'", output: "syntax error at position 71 near 'key'", }, { input: "select /* vitess-reserved keyword as unqualified column */ * from t where escape = 'test'", output: "syntax error at position 81 near 'escape'", }, { input: "(select /* parenthesized select */ * from t)", output: "syntax error at position 45", }, { input: "select * from t where id = ((select a from t1 union select b from t2) order by a limit 1)", output: "syntax error at position 76 near 'order'", }, { input: "select 'aa", output: "syntax error at position 11 near 'aa'", excludeMulti: true, }, { input: "select 'aa\\", output: "syntax error at position 12 near 'aa\\'", excludeMulti: true, }, { input: "select /* aa", output: "syntax error at position 13 near '/* aa'", excludeMulti: true, }} ) func TestErrors(t *testing.T) { for _, tcase := range invalidSQL { _, err := Parse(tcase.input) if err == nil || err.Error() != tcase.output { t.Errorf("%s: %v, want %s", tcase.input, err, tcase.output) } } } // Benchmark run on 6/23/17, prior to improvements: // BenchmarkParse1-4 100000 16334 ns/op // BenchmarkParse2-4 30000 44121 ns/op func BenchmarkParse1(b *testing.B) { sql := "select 'abcd', 20, 30.0, eid from a where 1=eid and name='3'" for i := 0; i < b.N; i++ { ast, err := Parse(sql) if err != nil { b.Fatal(err) } _ = String(ast) } } func BenchmarkParse2(b *testing.B) { sql := "select aaaa, bbb, ccc, ddd, eeee, ffff, gggg, hhhh, iiii from tttt, ttt1, ttt3 where aaaa = bbbb and bbbb = cccc and dddd+1 = eeee group by fff, gggg having hhhh = iiii and iiii = jjjj order by kkkk, llll limit 3, 4" for i := 0; i < b.N; i++ { ast, err := Parse(sql) if err != nil { b.Fatal(err) } _ = String(ast) } } var benchQuery string func init() { // benchQuerySize is the approximate size of the query. benchQuerySize := 1000000 // Size of value is 1/10 size of query. Then we add // 10 such values to the where clause. var baseval bytes.Buffer for i := 0; i < benchQuerySize/100; i++ { // Add an escape character: This will force the upcoming // tokenizer improvement to still create a copy of the string. // Then we can see if avoiding the copy will be worth it. baseval.WriteString("\\'123456789") } var buf bytes.Buffer buf.WriteString("select a from t1 where v = 1") for i := 0; i < 10; i++ { fmt.Fprintf(&buf, " and v%d = \"%d%s\"", i, i, baseval.String()) } benchQuery = buf.String() } func BenchmarkParse3(b *testing.B) { for i := 0; i < b.N; i++ { if _, err := Parse(benchQuery); err != nil { b.Fatal(err) } } }