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:
Doug Shelley 2016-09-16 16:11:15 -04:00 committed by amrith
parent 2808e1af46
commit 75a6fcc8ae
5 changed files with 33 additions and 0 deletions

View File

@ -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

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}