Files
MaxScale/system-test/fw/deny17
Esa Korhonen 08f5174915 MXS-2900 Rename maxscale-system-test directory to system-test
A link with the old directory name is provided.
2020-07-28 15:24:27 +03:00

13 lines
406 B
Plaintext

select sum(1) from test.t1;
select avg(1) from test.t1;
select sum(avg(1)) from test.t1;
select my_function(1) from test.t1;
select my_function("1") from test.t1;
select * from test.t1 where 1 = 1;
select * from test.t1 where 1 >= 1;
select * from test.t1 where 1 <= 1;
select * from test.t1 where 1 != 1;
select * from test.t1 where 1 <> 1;
select function(*) from test.t1;
select insert(*) from test.t1;