1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Fix typos in mysql-test/

This commit is contained in:
Vasilii Lakhin
2025-04-07 20:13:58 +03:00
committed by Daniel Black
parent 40c5b62531
commit 1b95e46524
682 changed files with 967 additions and 968 deletions

View File

@@ -13,7 +13,7 @@ INSERT INTO t1 (id) VALUES (1);
# <con1, S, granted>, <con2, X, waiting for con1>, <con1, X, waiting for con1>
# After MDEV-34877:
# <con1, S, granted>, <con1, X, granted>, <con2, X, waiting for con1>
# Expected: instead of deadlocking, the con1's request should ingore con2's
# Expected: instead of deadlocking, the con1's request should ignore con2's
connection con1;
BEGIN;
SELECT * FROM t1 LOCK IN SHARE MODE;
@@ -156,7 +156,7 @@ connection con3;
id
1
COMMIT;
# A secenario, where con1 has to bypass two transactions:
# A scenario, where con1 has to bypass two transactions:
# <con1, S, granted>
# <con1, S, granted> <con2, X, waiting>
# <con1, S, granted> <con2, X, waiting> <con3, X, waiting>