mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
- Added missning setting of table->rpl_write_set in record_gtid(), required by galera - Removed output of WSREP_PATCH_VERSION from galera_defaults, as this can change over time - Limit galera_many_tables_pk and galera_many_tables_nopk to 900, as on many systems the default open table limit is 1024
18 lines
373 B
Plaintext
18 lines
373 B
Plaintext
SET AUTOCOMMIT=OFF;
|
|
START TRANSACTION;
|
|
COMMIT;
|
|
CREATE TABLE sum_table (f1 INTEGER);
|
|
SELECT SUM(f1) = 900 FROM sum_table;
|
|
SUM(f1) = 900
|
|
1
|
|
SET AUTOCOMMIT=OFF;
|
|
START TRANSACTION;
|
|
SET AUTOCOMMIT=OFF;
|
|
START TRANSACTION;
|
|
UPDATE t900 SET f1 = 3;
|
|
COMMIT;
|
|
COMMIT;
|
|
ERROR 40001: Deadlock found when trying to get lock; try restarting transaction
|
|
DROP SCHEMA test;
|
|
CREATE SCHEMA test;
|