Add max_prepared_stmt_count to validation rules
Add max_prepared_stmt_count to the list of valid parameters that can be set on configuration groups for Mysql, Percona, PXC and MariaDB. Change-Id: Ib5522ba54bcb1ea5ace0deb9eb671dcafe2fc189 Closes-bug: 1624418
This commit is contained in:
parent
2808e1af46
commit
75a6fcc8ae
@ -0,0 +1,5 @@
|
||||
---
|
||||
features:
|
||||
- Add 'max-prepared-stmt-cnt' to the list of valid
|
||||
values which can be used in configuration groups
|
||||
for Mysql, Percona, MariaDB and PXC
|
@ -237,6 +237,13 @@
|
||||
"restart_required": false,
|
||||
"min": 0,
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "max_prepared_stmt_count",
|
||||
"restart_required": false,
|
||||
"max": 1048576,
|
||||
"min": 0,
|
||||
"type": "integer"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -237,6 +237,13 @@
|
||||
"restart_required": false,
|
||||
"min": 0,
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "max_prepared_stmt_count",
|
||||
"restart_required": false,
|
||||
"max": 1048576,
|
||||
"min": 0,
|
||||
"type": "integer"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -225,6 +225,13 @@
|
||||
"restart_required": false,
|
||||
"min": 0,
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "max_prepared_stmt_count",
|
||||
"restart_required": false,
|
||||
"max": 1048576,
|
||||
"min": 0,
|
||||
"type": "integer"
|
||||
}
|
||||
]
|
||||
}
|
@ -225,6 +225,13 @@
|
||||
"restart_required": false,
|
||||
"min": 0,
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "max_prepared_stmt_count",
|
||||
"restart_required": false,
|
||||
"max": 1048576,
|
||||
"min": 0,
|
||||
"type": "integer"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user