Files
MaxScale/maxscale-system-test/fw/pass7
Markus Mäkelä d7d4ec29bb Add tests from develop
Added tests from develop. The test results need to be modified for 2.0.
2017-05-26 15:40:40 +03:00

7 lines
142 B
Plaintext

DROP TABLE IF EXISTS t1;
CREATE TABLE t1 (x1 int, fl int);
select sleep(5);
delete from t1;
SELECT fl FROM t1;
UPDATE t1 SET fl=1 WHERE x1=0;