mirror of
https://github.com/MariaDB/server.git
synced 2026-05-04 22:25:32 +02:00
MW-265 Add support for wsrep_max_ws_rows
Variable wsrep_max_ws_rows limits the number of rows that a transaction can insert/update/delete.
This commit is contained in:
parent
10880d67b9
commit
3db92ee433
6 changed files with 252 additions and 3 deletions
|
|
@ -4694,7 +4694,7 @@ static Sys_var_ulong Sys_wsrep_max_ws_size (
|
|||
static Sys_var_ulong Sys_wsrep_max_ws_rows (
|
||||
"wsrep_max_ws_rows", "Max number of rows in write set",
|
||||
GLOBAL_VAR(wsrep_max_ws_rows), CMD_LINE(REQUIRED_ARG),
|
||||
VALID_RANGE(1, 1048576), DEFAULT(131072), BLOCK_SIZE(1));
|
||||
VALID_RANGE(0, 1048576), DEFAULT(0), BLOCK_SIZE(1));
|
||||
|
||||
static Sys_var_charptr Sys_wsrep_notify_cmd(
|
||||
"wsrep_notify_cmd", "",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue