Files
MaxScale/maxscale-system-test/fw2/pass4
Markus Mäkelä 26f8f9d869 MXS-1311: Add tests for keywords as function parameters
The dbfwfilter tests now test the function type rule with keywords as
parameters.
2017-07-07 16:46:54 +03:00

7 lines
214 B
Plaintext

create or replace table test.t1(id int);
create function my_function (arg int) returns int deterministic return arg * arg;
select "sum(1)";
select (1);
select * from(select 1) as a;
insert into test.t1 values (1);