fix(inputs.mysql): Update MariaDB Dialect regex version check (#13361)
This commit is contained in:
parent
664d013acb
commit
76889af6f2
|
|
@ -274,7 +274,7 @@ const (
|
|||
EXECUTE IMMEDIATE CONCAT("
|
||||
SELECT NAME, COUNT
|
||||
FROM information_schema.INNODB_METRICS
|
||||
WHERE ", IF(version() REGEXP '10\.[1-4].*',"status='enabled'", "ENABLED=1"), "
|
||||
WHERE ", IF(version() REGEXP '10\.[1-4]\\..*',"status='enabled'", "ENABLED=1"), "
|
||||
");
|
||||
`
|
||||
perfTableIOWaitsQuery = `
|
||||
|
|
|
|||
Loading…
Reference in New Issue