Files
MaxScale/system-test/fw/pass5
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

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;