1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

MDEV-36425 fix test results

followup for ce8a74f235
This commit is contained in:
Sergei Golubchik
2025-04-30 12:32:50 +02:00
parent c29e83f226
commit ee9359de89

View File

@@ -17,7 +17,7 @@ connect foo_node_2,127.0.0.1,foo,,test,$port_2,;
# Connect with foo_node_2
connection foo_node_2;
INSERT INTO t1 VALUES (2);
ERROR HY000: The MariaDB server is running with the --read-only option so it cannot execute this statement
ERROR HY000: The MariaDB server is running with the --read-only=ON option so it cannot execute this statement
CREATE TEMPORARY TABLE t2(id int not null primary key) engine=innodb;
INSERT INTO t2 values (1);
DROP TABLE t2;