Files
MaxScale/maxscale-system-test/fw/pass5
Markus Mäkelä 957b50c811 Remove trailing whitespace
Removed trailing whitespace in tests and build scripts.
2017-05-26 14:29:28 +03:00

6 lines
147 B
Plaintext

DROP TABLE IF EXISTS t1;
CREATE TABLE t1 (x1 INT, fl INT);
DELETE FROM t1 WHERE x1=0;
SELECT fl FROM t1 WHERE x1=0;
UPDATE t1 SET fl=1 WHERE x1=0;