summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/r/innodb-rollback.result
blob: 5eca7ad6967d380c8a8c307c8f37fc2215289814 (plain)
1
2
3
4
5
6
7
8
9
10
CREATE TABLE t1 (a INT) ENGINE=InnoDB;
connect  con1,localhost,root,,test;
ALTER TABLE t1;
connect  con2,localhost,root,,test;
SELECT f() FROM t1;
ERROR 42000: FUNCTION test.f does not exist
disconnect con2;
disconnect con1;
connection default;
DROP TABLE t1;