mirror of
https://github.com/MariaDB/server.git
synced 2025-09-11 05:52:26 +03:00
25 lines
914 B
Plaintext
25 lines
914 B
Plaintext
--- /data/src/bb-10.2-mdev12528/mysql-test/suite/storage_engine/trx/insert.result
|
|
+++ /data/src/bb-10.2-mdev12528/mysql-test/suite/storage_engine/trx/insert.reject
|
|
@@ -37,18 +37,18 @@
|
|
INSERT INTO t1 SET a = 11, b = 'f';
|
|
INSERT t1 SET b = DEFAULT;
|
|
ROLLBACK TO SAVEPOINT spt1;
|
|
+ERROR HY000: MyRocks currently does not support ROLLBACK TO SAVEPOINT if modifying rows.
|
|
INSERT INTO t1 (b,a) VALUES ('test1',10);
|
|
+ERROR HY000: This transaction was rolled back and cannot be committed. Only supported operation is to roll it back, so all pending changes will be discarded. Please restart another transaction.
|
|
COMMIT;
|
|
+ERROR HY000: This transaction was rolled back and cannot be committed. Only supported operation is to roll it back, so all pending changes will be discarded. Please restart another transaction.
|
|
SELECT a,b FROM t1;
|
|
a b
|
|
1 a
|
|
-10 NULL
|
|
10 foo
|
|
-10 test1
|
|
100 foo
|
|
11 abc
|
|
2 b
|
|
-20 NULL
|
|
3 c
|
|
4 d
|
|
5 e
|