From b0318a9edbf09c2383aa011a5d02657f64a5d061 Mon Sep 17 00:00:00 2001 From: Abdul Basit Date: Thu, 12 Sep 2024 23:48:34 +0500 Subject: [PATCH] [analyze] Add Analyzer for MySQL (#3193) * implement analyzer interface for mysql * add integration test for mysql analyzer * linked detectors with analyzers for jdbc and mysql validation for connection string in analyzer * refactored secretInfoToAnalyzerResult func * generated permissions for mysql analyzer * [chore] - optimization in execution flow - use test-container library for analyze test. * added host in secret info struct simplified the mysql test due to huge structure --------- Co-authored-by: Abdul Basit --- .../analyzers/mysql/expected_output.json | 1 + pkg/analyzer/analyzers/mysql/mysql.go | 197 +++++++- pkg/analyzer/analyzers/mysql/mysql_test.go | 104 ++++ pkg/analyzer/analyzers/mysql/permissions.go | 451 ++++++++++++++++++ pkg/analyzer/analyzers/mysql/permissions.yaml | 80 ++++ pkg/detectors/jdbc/jdbc.go | 3 + pkg/detectors/jdbc/jdbc_test.go | 1 + 7 files changed, 835 insertions(+), 2 deletions(-) create mode 100644 pkg/analyzer/analyzers/mysql/expected_output.json create mode 100644 pkg/analyzer/analyzers/mysql/mysql_test.go create mode 100644 pkg/analyzer/analyzers/mysql/permissions.go create mode 100644 pkg/analyzer/analyzers/mysql/permissions.yaml diff --git a/pkg/analyzer/analyzers/mysql/expected_output.json b/pkg/analyzer/analyzers/mysql/expected_output.json new file mode 100644 index 000000000..462b61204 --- /dev/null +++ b/pkg/analyzer/analyzers/mysql/expected_output.json @@ -0,0 +1 @@ +{"AnalyzerType":9,"Bindings":[{"Resource":{"Name":"ADMINISTRABLE_ROLE_AUTHORIZATIONS","FullyQualifiedName":"localhost/information_schema/ADMINISTRABLE_ROLE_AUTHORIZATIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"ADMINISTRABLE_ROLE_AUTHORIZATIONS","FullyQualifiedName":"localhost/information_schema/ADMINISTRABLE_ROLE_AUTHORIZATIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"ADMINISTRABLE_ROLE_AUTHORIZATIONS","FullyQualifiedName":"localhost/information_schema/ADMINISTRABLE_ROLE_AUTHORIZATIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"ADMINISTRABLE_ROLE_AUTHORIZATIONS","FullyQualifiedName":"localhost/information_schema/ADMINISTRABLE_ROLE_AUTHORIZATIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"ADMINISTRABLE_ROLE_AUTHORIZATIONS","FullyQualifiedName":"localhost/information_schema/ADMINISTRABLE_ROLE_AUTHORIZATIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"ADMINISTRABLE_ROLE_AUTHORIZATIONS","FullyQualifiedName":"localhost/information_schema/ADMINISTRABLE_ROLE_AUTHORIZATIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"ADMINISTRABLE_ROLE_AUTHORIZATIONS","FullyQualifiedName":"localhost/information_schema/ADMINISTRABLE_ROLE_AUTHORIZATIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"ADMINISTRABLE_ROLE_AUTHORIZATIONS","FullyQualifiedName":"localhost/information_schema/ADMINISTRABLE_ROLE_AUTHORIZATIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"ADMINISTRABLE_ROLE_AUTHORIZATIONS","FullyQualifiedName":"localhost/information_schema/ADMINISTRABLE_ROLE_AUTHORIZATIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"ADMINISTRABLE_ROLE_AUTHORIZATIONS","FullyQualifiedName":"localhost/information_schema/ADMINISTRABLE_ROLE_AUTHORIZATIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"ADMINISTRABLE_ROLE_AUTHORIZATIONS","FullyQualifiedName":"localhost/information_schema/ADMINISTRABLE_ROLE_AUTHORIZATIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"ADMINISTRABLE_ROLE_AUTHORIZATIONS","FullyQualifiedName":"localhost/information_schema/ADMINISTRABLE_ROLE_AUTHORIZATIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"APPLICABLE_ROLES","FullyQualifiedName":"localhost/information_schema/APPLICABLE_ROLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"APPLICABLE_ROLES","FullyQualifiedName":"localhost/information_schema/APPLICABLE_ROLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"APPLICABLE_ROLES","FullyQualifiedName":"localhost/information_schema/APPLICABLE_ROLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"APPLICABLE_ROLES","FullyQualifiedName":"localhost/information_schema/APPLICABLE_ROLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"APPLICABLE_ROLES","FullyQualifiedName":"localhost/information_schema/APPLICABLE_ROLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"APPLICABLE_ROLES","FullyQualifiedName":"localhost/information_schema/APPLICABLE_ROLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"APPLICABLE_ROLES","FullyQualifiedName":"localhost/information_schema/APPLICABLE_ROLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"APPLICABLE_ROLES","FullyQualifiedName":"localhost/information_schema/APPLICABLE_ROLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"APPLICABLE_ROLES","FullyQualifiedName":"localhost/information_schema/APPLICABLE_ROLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"APPLICABLE_ROLES","FullyQualifiedName":"localhost/information_schema/APPLICABLE_ROLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"APPLICABLE_ROLES","FullyQualifiedName":"localhost/information_schema/APPLICABLE_ROLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"APPLICABLE_ROLES","FullyQualifiedName":"localhost/information_schema/APPLICABLE_ROLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"CHARACTER_SETS","FullyQualifiedName":"localhost/information_schema/CHARACTER_SETS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"CHARACTER_SETS","FullyQualifiedName":"localhost/information_schema/CHARACTER_SETS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"CHARACTER_SETS","FullyQualifiedName":"localhost/information_schema/CHARACTER_SETS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"CHARACTER_SETS","FullyQualifiedName":"localhost/information_schema/CHARACTER_SETS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"CHARACTER_SETS","FullyQualifiedName":"localhost/information_schema/CHARACTER_SETS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"CHARACTER_SETS","FullyQualifiedName":"localhost/information_schema/CHARACTER_SETS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"CHARACTER_SETS","FullyQualifiedName":"localhost/information_schema/CHARACTER_SETS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"CHARACTER_SETS","FullyQualifiedName":"localhost/information_schema/CHARACTER_SETS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"CHARACTER_SETS","FullyQualifiedName":"localhost/information_schema/CHARACTER_SETS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"CHARACTER_SETS","FullyQualifiedName":"localhost/information_schema/CHARACTER_SETS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"CHARACTER_SETS","FullyQualifiedName":"localhost/information_schema/CHARACTER_SETS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"CHARACTER_SETS","FullyQualifiedName":"localhost/information_schema/CHARACTER_SETS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"CHECK_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/CHECK_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"CHECK_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/CHECK_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"CHECK_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/CHECK_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"CHECK_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/CHECK_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"CHECK_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/CHECK_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"CHECK_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/CHECK_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"CHECK_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/CHECK_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"CHECK_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/CHECK_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"CHECK_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/CHECK_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"CHECK_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/CHECK_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"CHECK_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/CHECK_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"CHECK_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/CHECK_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"COLLATIONS","FullyQualifiedName":"localhost/information_schema/COLLATIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"COLLATIONS","FullyQualifiedName":"localhost/information_schema/COLLATIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"COLLATIONS","FullyQualifiedName":"localhost/information_schema/COLLATIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"COLLATIONS","FullyQualifiedName":"localhost/information_schema/COLLATIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"COLLATIONS","FullyQualifiedName":"localhost/information_schema/COLLATIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"COLLATIONS","FullyQualifiedName":"localhost/information_schema/COLLATIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"COLLATIONS","FullyQualifiedName":"localhost/information_schema/COLLATIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"COLLATIONS","FullyQualifiedName":"localhost/information_schema/COLLATIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"COLLATIONS","FullyQualifiedName":"localhost/information_schema/COLLATIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"COLLATIONS","FullyQualifiedName":"localhost/information_schema/COLLATIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"COLLATIONS","FullyQualifiedName":"localhost/information_schema/COLLATIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"COLLATIONS","FullyQualifiedName":"localhost/information_schema/COLLATIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"COLLATION_CHARACTER_SET_APPLICABILITY","FullyQualifiedName":"localhost/information_schema/COLLATION_CHARACTER_SET_APPLICABILITY","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"COLLATION_CHARACTER_SET_APPLICABILITY","FullyQualifiedName":"localhost/information_schema/COLLATION_CHARACTER_SET_APPLICABILITY","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"COLLATION_CHARACTER_SET_APPLICABILITY","FullyQualifiedName":"localhost/information_schema/COLLATION_CHARACTER_SET_APPLICABILITY","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"COLLATION_CHARACTER_SET_APPLICABILITY","FullyQualifiedName":"localhost/information_schema/COLLATION_CHARACTER_SET_APPLICABILITY","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"COLLATION_CHARACTER_SET_APPLICABILITY","FullyQualifiedName":"localhost/information_schema/COLLATION_CHARACTER_SET_APPLICABILITY","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"COLLATION_CHARACTER_SET_APPLICABILITY","FullyQualifiedName":"localhost/information_schema/COLLATION_CHARACTER_SET_APPLICABILITY","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"COLLATION_CHARACTER_SET_APPLICABILITY","FullyQualifiedName":"localhost/information_schema/COLLATION_CHARACTER_SET_APPLICABILITY","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"COLLATION_CHARACTER_SET_APPLICABILITY","FullyQualifiedName":"localhost/information_schema/COLLATION_CHARACTER_SET_APPLICABILITY","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"COLLATION_CHARACTER_SET_APPLICABILITY","FullyQualifiedName":"localhost/information_schema/COLLATION_CHARACTER_SET_APPLICABILITY","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"COLLATION_CHARACTER_SET_APPLICABILITY","FullyQualifiedName":"localhost/information_schema/COLLATION_CHARACTER_SET_APPLICABILITY","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"COLLATION_CHARACTER_SET_APPLICABILITY","FullyQualifiedName":"localhost/information_schema/COLLATION_CHARACTER_SET_APPLICABILITY","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"COLLATION_CHARACTER_SET_APPLICABILITY","FullyQualifiedName":"localhost/information_schema/COLLATION_CHARACTER_SET_APPLICABILITY","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"COLUMNS","FullyQualifiedName":"localhost/information_schema/COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"COLUMNS","FullyQualifiedName":"localhost/information_schema/COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"COLUMNS","FullyQualifiedName":"localhost/information_schema/COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"COLUMNS","FullyQualifiedName":"localhost/information_schema/COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"COLUMNS","FullyQualifiedName":"localhost/information_schema/COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"COLUMNS","FullyQualifiedName":"localhost/information_schema/COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"COLUMNS","FullyQualifiedName":"localhost/information_schema/COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"COLUMNS","FullyQualifiedName":"localhost/information_schema/COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"COLUMNS","FullyQualifiedName":"localhost/information_schema/COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"COLUMNS","FullyQualifiedName":"localhost/information_schema/COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"COLUMNS","FullyQualifiedName":"localhost/information_schema/COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"COLUMNS","FullyQualifiedName":"localhost/information_schema/COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"COLUMNS_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/COLUMNS_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"COLUMNS_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/COLUMNS_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"COLUMNS_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/COLUMNS_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"COLUMNS_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/COLUMNS_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"COLUMNS_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/COLUMNS_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"COLUMNS_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/COLUMNS_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"COLUMNS_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/COLUMNS_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"COLUMNS_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/COLUMNS_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"COLUMNS_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/COLUMNS_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"COLUMNS_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/COLUMNS_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"COLUMNS_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/COLUMNS_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"COLUMNS_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/COLUMNS_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"COLUMN_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/COLUMN_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"COLUMN_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/COLUMN_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"COLUMN_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/COLUMN_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"COLUMN_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/COLUMN_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"COLUMN_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/COLUMN_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"COLUMN_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/COLUMN_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"COLUMN_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/COLUMN_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"COLUMN_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/COLUMN_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"COLUMN_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/COLUMN_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"COLUMN_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/COLUMN_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"COLUMN_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/COLUMN_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"COLUMN_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/COLUMN_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"COLUMN_STATISTICS","FullyQualifiedName":"localhost/information_schema/COLUMN_STATISTICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"COLUMN_STATISTICS","FullyQualifiedName":"localhost/information_schema/COLUMN_STATISTICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"COLUMN_STATISTICS","FullyQualifiedName":"localhost/information_schema/COLUMN_STATISTICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"COLUMN_STATISTICS","FullyQualifiedName":"localhost/information_schema/COLUMN_STATISTICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"COLUMN_STATISTICS","FullyQualifiedName":"localhost/information_schema/COLUMN_STATISTICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"COLUMN_STATISTICS","FullyQualifiedName":"localhost/information_schema/COLUMN_STATISTICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"COLUMN_STATISTICS","FullyQualifiedName":"localhost/information_schema/COLUMN_STATISTICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"COLUMN_STATISTICS","FullyQualifiedName":"localhost/information_schema/COLUMN_STATISTICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"COLUMN_STATISTICS","FullyQualifiedName":"localhost/information_schema/COLUMN_STATISTICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"COLUMN_STATISTICS","FullyQualifiedName":"localhost/information_schema/COLUMN_STATISTICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"COLUMN_STATISTICS","FullyQualifiedName":"localhost/information_schema/COLUMN_STATISTICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"COLUMN_STATISTICS","FullyQualifiedName":"localhost/information_schema/COLUMN_STATISTICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"ENABLED_ROLES","FullyQualifiedName":"localhost/information_schema/ENABLED_ROLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"ENABLED_ROLES","FullyQualifiedName":"localhost/information_schema/ENABLED_ROLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"ENABLED_ROLES","FullyQualifiedName":"localhost/information_schema/ENABLED_ROLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"ENABLED_ROLES","FullyQualifiedName":"localhost/information_schema/ENABLED_ROLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"ENABLED_ROLES","FullyQualifiedName":"localhost/information_schema/ENABLED_ROLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"ENABLED_ROLES","FullyQualifiedName":"localhost/information_schema/ENABLED_ROLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"ENABLED_ROLES","FullyQualifiedName":"localhost/information_schema/ENABLED_ROLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"ENABLED_ROLES","FullyQualifiedName":"localhost/information_schema/ENABLED_ROLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"ENABLED_ROLES","FullyQualifiedName":"localhost/information_schema/ENABLED_ROLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"ENABLED_ROLES","FullyQualifiedName":"localhost/information_schema/ENABLED_ROLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"ENABLED_ROLES","FullyQualifiedName":"localhost/information_schema/ENABLED_ROLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"ENABLED_ROLES","FullyQualifiedName":"localhost/information_schema/ENABLED_ROLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"ENGINES","FullyQualifiedName":"localhost/information_schema/ENGINES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"ENGINES","FullyQualifiedName":"localhost/information_schema/ENGINES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"ENGINES","FullyQualifiedName":"localhost/information_schema/ENGINES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"ENGINES","FullyQualifiedName":"localhost/information_schema/ENGINES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"ENGINES","FullyQualifiedName":"localhost/information_schema/ENGINES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"ENGINES","FullyQualifiedName":"localhost/information_schema/ENGINES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"ENGINES","FullyQualifiedName":"localhost/information_schema/ENGINES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"ENGINES","FullyQualifiedName":"localhost/information_schema/ENGINES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"ENGINES","FullyQualifiedName":"localhost/information_schema/ENGINES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"ENGINES","FullyQualifiedName":"localhost/information_schema/ENGINES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"ENGINES","FullyQualifiedName":"localhost/information_schema/ENGINES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"ENGINES","FullyQualifiedName":"localhost/information_schema/ENGINES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"EVENTS","FullyQualifiedName":"localhost/information_schema/EVENTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"EVENTS","FullyQualifiedName":"localhost/information_schema/EVENTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"EVENTS","FullyQualifiedName":"localhost/information_schema/EVENTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"EVENTS","FullyQualifiedName":"localhost/information_schema/EVENTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"EVENTS","FullyQualifiedName":"localhost/information_schema/EVENTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"EVENTS","FullyQualifiedName":"localhost/information_schema/EVENTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"EVENTS","FullyQualifiedName":"localhost/information_schema/EVENTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"EVENTS","FullyQualifiedName":"localhost/information_schema/EVENTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"EVENTS","FullyQualifiedName":"localhost/information_schema/EVENTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"EVENTS","FullyQualifiedName":"localhost/information_schema/EVENTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"EVENTS","FullyQualifiedName":"localhost/information_schema/EVENTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"EVENTS","FullyQualifiedName":"localhost/information_schema/EVENTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"FILES","FullyQualifiedName":"localhost/information_schema/FILES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"FILES","FullyQualifiedName":"localhost/information_schema/FILES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"FILES","FullyQualifiedName":"localhost/information_schema/FILES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"FILES","FullyQualifiedName":"localhost/information_schema/FILES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"FILES","FullyQualifiedName":"localhost/information_schema/FILES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"FILES","FullyQualifiedName":"localhost/information_schema/FILES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"FILES","FullyQualifiedName":"localhost/information_schema/FILES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"FILES","FullyQualifiedName":"localhost/information_schema/FILES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"FILES","FullyQualifiedName":"localhost/information_schema/FILES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"FILES","FullyQualifiedName":"localhost/information_schema/FILES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"FILES","FullyQualifiedName":"localhost/information_schema/FILES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"FILES","FullyQualifiedName":"localhost/information_schema/FILES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_PAGE","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_PAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_PAGE","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_PAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_PAGE","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_PAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_PAGE","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_PAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_PAGE","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_PAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_PAGE","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_PAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_PAGE","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_PAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_PAGE","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_PAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_PAGE","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_PAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_PAGE","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_PAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_PAGE","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_PAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_PAGE","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_PAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_PAGE_LRU","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_PAGE_LRU","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_PAGE_LRU","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_PAGE_LRU","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_PAGE_LRU","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_PAGE_LRU","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_PAGE_LRU","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_PAGE_LRU","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_PAGE_LRU","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_PAGE_LRU","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_PAGE_LRU","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_PAGE_LRU","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_PAGE_LRU","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_PAGE_LRU","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_PAGE_LRU","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_PAGE_LRU","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_PAGE_LRU","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_PAGE_LRU","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_PAGE_LRU","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_PAGE_LRU","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_PAGE_LRU","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_PAGE_LRU","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_PAGE_LRU","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_PAGE_LRU","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_POOL_STATS","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_POOL_STATS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_POOL_STATS","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_POOL_STATS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_POOL_STATS","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_POOL_STATS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_POOL_STATS","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_POOL_STATS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_POOL_STATS","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_POOL_STATS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_POOL_STATS","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_POOL_STATS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_POOL_STATS","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_POOL_STATS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_POOL_STATS","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_POOL_STATS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_POOL_STATS","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_POOL_STATS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_POOL_STATS","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_POOL_STATS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_POOL_STATS","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_POOL_STATS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_BUFFER_POOL_STATS","FullyQualifiedName":"localhost/information_schema/INNODB_BUFFER_POOL_STATS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_CACHED_INDEXES","FullyQualifiedName":"localhost/information_schema/INNODB_CACHED_INDEXES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_CACHED_INDEXES","FullyQualifiedName":"localhost/information_schema/INNODB_CACHED_INDEXES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_CACHED_INDEXES","FullyQualifiedName":"localhost/information_schema/INNODB_CACHED_INDEXES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_CACHED_INDEXES","FullyQualifiedName":"localhost/information_schema/INNODB_CACHED_INDEXES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_CACHED_INDEXES","FullyQualifiedName":"localhost/information_schema/INNODB_CACHED_INDEXES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_CACHED_INDEXES","FullyQualifiedName":"localhost/information_schema/INNODB_CACHED_INDEXES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_CACHED_INDEXES","FullyQualifiedName":"localhost/information_schema/INNODB_CACHED_INDEXES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_CACHED_INDEXES","FullyQualifiedName":"localhost/information_schema/INNODB_CACHED_INDEXES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_CACHED_INDEXES","FullyQualifiedName":"localhost/information_schema/INNODB_CACHED_INDEXES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_CACHED_INDEXES","FullyQualifiedName":"localhost/information_schema/INNODB_CACHED_INDEXES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_CACHED_INDEXES","FullyQualifiedName":"localhost/information_schema/INNODB_CACHED_INDEXES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_CACHED_INDEXES","FullyQualifiedName":"localhost/information_schema/INNODB_CACHED_INDEXES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_CMP","FullyQualifiedName":"localhost/information_schema/INNODB_CMP","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_CMP","FullyQualifiedName":"localhost/information_schema/INNODB_CMP","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_CMP","FullyQualifiedName":"localhost/information_schema/INNODB_CMP","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_CMP","FullyQualifiedName":"localhost/information_schema/INNODB_CMP","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_CMP","FullyQualifiedName":"localhost/information_schema/INNODB_CMP","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_CMP","FullyQualifiedName":"localhost/information_schema/INNODB_CMP","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_CMP","FullyQualifiedName":"localhost/information_schema/INNODB_CMP","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_CMP","FullyQualifiedName":"localhost/information_schema/INNODB_CMP","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_CMP","FullyQualifiedName":"localhost/information_schema/INNODB_CMP","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_CMP","FullyQualifiedName":"localhost/information_schema/INNODB_CMP","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_CMP","FullyQualifiedName":"localhost/information_schema/INNODB_CMP","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_CMP","FullyQualifiedName":"localhost/information_schema/INNODB_CMP","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_CMPMEM","FullyQualifiedName":"localhost/information_schema/INNODB_CMPMEM","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_CMPMEM","FullyQualifiedName":"localhost/information_schema/INNODB_CMPMEM","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_CMPMEM","FullyQualifiedName":"localhost/information_schema/INNODB_CMPMEM","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_CMPMEM","FullyQualifiedName":"localhost/information_schema/INNODB_CMPMEM","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_CMPMEM","FullyQualifiedName":"localhost/information_schema/INNODB_CMPMEM","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_CMPMEM","FullyQualifiedName":"localhost/information_schema/INNODB_CMPMEM","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_CMPMEM","FullyQualifiedName":"localhost/information_schema/INNODB_CMPMEM","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_CMPMEM","FullyQualifiedName":"localhost/information_schema/INNODB_CMPMEM","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_CMPMEM","FullyQualifiedName":"localhost/information_schema/INNODB_CMPMEM","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_CMPMEM","FullyQualifiedName":"localhost/information_schema/INNODB_CMPMEM","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_CMPMEM","FullyQualifiedName":"localhost/information_schema/INNODB_CMPMEM","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_CMPMEM","FullyQualifiedName":"localhost/information_schema/INNODB_CMPMEM","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_CMPMEM_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMPMEM_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_CMPMEM_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMPMEM_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_CMPMEM_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMPMEM_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_CMPMEM_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMPMEM_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_CMPMEM_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMPMEM_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_CMPMEM_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMPMEM_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_CMPMEM_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMPMEM_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_CMPMEM_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMPMEM_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_CMPMEM_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMPMEM_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_CMPMEM_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMPMEM_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_CMPMEM_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMPMEM_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_CMPMEM_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMPMEM_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_CMP_PER_INDEX","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_PER_INDEX","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_CMP_PER_INDEX","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_PER_INDEX","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_CMP_PER_INDEX","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_PER_INDEX","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_CMP_PER_INDEX","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_PER_INDEX","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_CMP_PER_INDEX","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_PER_INDEX","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_CMP_PER_INDEX","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_PER_INDEX","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_CMP_PER_INDEX","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_PER_INDEX","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_CMP_PER_INDEX","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_PER_INDEX","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_CMP_PER_INDEX","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_PER_INDEX","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_CMP_PER_INDEX","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_PER_INDEX","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_CMP_PER_INDEX","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_PER_INDEX","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_CMP_PER_INDEX","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_PER_INDEX","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_CMP_PER_INDEX_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_PER_INDEX_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_CMP_PER_INDEX_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_PER_INDEX_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_CMP_PER_INDEX_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_PER_INDEX_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_CMP_PER_INDEX_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_PER_INDEX_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_CMP_PER_INDEX_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_PER_INDEX_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_CMP_PER_INDEX_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_PER_INDEX_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_CMP_PER_INDEX_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_PER_INDEX_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_CMP_PER_INDEX_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_PER_INDEX_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_CMP_PER_INDEX_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_PER_INDEX_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_CMP_PER_INDEX_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_PER_INDEX_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_CMP_PER_INDEX_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_PER_INDEX_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_CMP_PER_INDEX_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_PER_INDEX_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_CMP_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_CMP_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_CMP_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_CMP_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_CMP_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_CMP_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_CMP_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_CMP_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_CMP_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_CMP_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_CMP_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_CMP_RESET","FullyQualifiedName":"localhost/information_schema/INNODB_CMP_RESET","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_COLUMNS","FullyQualifiedName":"localhost/information_schema/INNODB_COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_COLUMNS","FullyQualifiedName":"localhost/information_schema/INNODB_COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_COLUMNS","FullyQualifiedName":"localhost/information_schema/INNODB_COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_COLUMNS","FullyQualifiedName":"localhost/information_schema/INNODB_COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_COLUMNS","FullyQualifiedName":"localhost/information_schema/INNODB_COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_COLUMNS","FullyQualifiedName":"localhost/information_schema/INNODB_COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_COLUMNS","FullyQualifiedName":"localhost/information_schema/INNODB_COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_COLUMNS","FullyQualifiedName":"localhost/information_schema/INNODB_COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_COLUMNS","FullyQualifiedName":"localhost/information_schema/INNODB_COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_COLUMNS","FullyQualifiedName":"localhost/information_schema/INNODB_COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_COLUMNS","FullyQualifiedName":"localhost/information_schema/INNODB_COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_COLUMNS","FullyQualifiedName":"localhost/information_schema/INNODB_COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_DATAFILES","FullyQualifiedName":"localhost/information_schema/INNODB_DATAFILES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_DATAFILES","FullyQualifiedName":"localhost/information_schema/INNODB_DATAFILES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_DATAFILES","FullyQualifiedName":"localhost/information_schema/INNODB_DATAFILES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_DATAFILES","FullyQualifiedName":"localhost/information_schema/INNODB_DATAFILES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_DATAFILES","FullyQualifiedName":"localhost/information_schema/INNODB_DATAFILES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_DATAFILES","FullyQualifiedName":"localhost/information_schema/INNODB_DATAFILES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_DATAFILES","FullyQualifiedName":"localhost/information_schema/INNODB_DATAFILES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_DATAFILES","FullyQualifiedName":"localhost/information_schema/INNODB_DATAFILES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_DATAFILES","FullyQualifiedName":"localhost/information_schema/INNODB_DATAFILES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_DATAFILES","FullyQualifiedName":"localhost/information_schema/INNODB_DATAFILES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_DATAFILES","FullyQualifiedName":"localhost/information_schema/INNODB_DATAFILES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_DATAFILES","FullyQualifiedName":"localhost/information_schema/INNODB_DATAFILES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_FIELDS","FullyQualifiedName":"localhost/information_schema/INNODB_FIELDS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_FIELDS","FullyQualifiedName":"localhost/information_schema/INNODB_FIELDS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_FIELDS","FullyQualifiedName":"localhost/information_schema/INNODB_FIELDS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_FIELDS","FullyQualifiedName":"localhost/information_schema/INNODB_FIELDS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_FIELDS","FullyQualifiedName":"localhost/information_schema/INNODB_FIELDS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_FIELDS","FullyQualifiedName":"localhost/information_schema/INNODB_FIELDS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_FIELDS","FullyQualifiedName":"localhost/information_schema/INNODB_FIELDS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_FIELDS","FullyQualifiedName":"localhost/information_schema/INNODB_FIELDS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_FIELDS","FullyQualifiedName":"localhost/information_schema/INNODB_FIELDS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_FIELDS","FullyQualifiedName":"localhost/information_schema/INNODB_FIELDS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_FIELDS","FullyQualifiedName":"localhost/information_schema/INNODB_FIELDS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_FIELDS","FullyQualifiedName":"localhost/information_schema/INNODB_FIELDS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_FOREIGN","FullyQualifiedName":"localhost/information_schema/INNODB_FOREIGN","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_FOREIGN","FullyQualifiedName":"localhost/information_schema/INNODB_FOREIGN","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_FOREIGN","FullyQualifiedName":"localhost/information_schema/INNODB_FOREIGN","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_FOREIGN","FullyQualifiedName":"localhost/information_schema/INNODB_FOREIGN","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_FOREIGN","FullyQualifiedName":"localhost/information_schema/INNODB_FOREIGN","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_FOREIGN","FullyQualifiedName":"localhost/information_schema/INNODB_FOREIGN","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_FOREIGN","FullyQualifiedName":"localhost/information_schema/INNODB_FOREIGN","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_FOREIGN","FullyQualifiedName":"localhost/information_schema/INNODB_FOREIGN","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_FOREIGN","FullyQualifiedName":"localhost/information_schema/INNODB_FOREIGN","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_FOREIGN","FullyQualifiedName":"localhost/information_schema/INNODB_FOREIGN","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_FOREIGN","FullyQualifiedName":"localhost/information_schema/INNODB_FOREIGN","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_FOREIGN","FullyQualifiedName":"localhost/information_schema/INNODB_FOREIGN","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_FOREIGN_COLS","FullyQualifiedName":"localhost/information_schema/INNODB_FOREIGN_COLS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_FOREIGN_COLS","FullyQualifiedName":"localhost/information_schema/INNODB_FOREIGN_COLS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_FOREIGN_COLS","FullyQualifiedName":"localhost/information_schema/INNODB_FOREIGN_COLS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_FOREIGN_COLS","FullyQualifiedName":"localhost/information_schema/INNODB_FOREIGN_COLS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_FOREIGN_COLS","FullyQualifiedName":"localhost/information_schema/INNODB_FOREIGN_COLS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_FOREIGN_COLS","FullyQualifiedName":"localhost/information_schema/INNODB_FOREIGN_COLS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_FOREIGN_COLS","FullyQualifiedName":"localhost/information_schema/INNODB_FOREIGN_COLS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_FOREIGN_COLS","FullyQualifiedName":"localhost/information_schema/INNODB_FOREIGN_COLS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_FOREIGN_COLS","FullyQualifiedName":"localhost/information_schema/INNODB_FOREIGN_COLS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_FOREIGN_COLS","FullyQualifiedName":"localhost/information_schema/INNODB_FOREIGN_COLS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_FOREIGN_COLS","FullyQualifiedName":"localhost/information_schema/INNODB_FOREIGN_COLS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_FOREIGN_COLS","FullyQualifiedName":"localhost/information_schema/INNODB_FOREIGN_COLS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_FT_BEING_DELETED","FullyQualifiedName":"localhost/information_schema/INNODB_FT_BEING_DELETED","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_FT_BEING_DELETED","FullyQualifiedName":"localhost/information_schema/INNODB_FT_BEING_DELETED","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_FT_BEING_DELETED","FullyQualifiedName":"localhost/information_schema/INNODB_FT_BEING_DELETED","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_FT_BEING_DELETED","FullyQualifiedName":"localhost/information_schema/INNODB_FT_BEING_DELETED","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_FT_BEING_DELETED","FullyQualifiedName":"localhost/information_schema/INNODB_FT_BEING_DELETED","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_FT_BEING_DELETED","FullyQualifiedName":"localhost/information_schema/INNODB_FT_BEING_DELETED","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_FT_BEING_DELETED","FullyQualifiedName":"localhost/information_schema/INNODB_FT_BEING_DELETED","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_FT_BEING_DELETED","FullyQualifiedName":"localhost/information_schema/INNODB_FT_BEING_DELETED","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_FT_BEING_DELETED","FullyQualifiedName":"localhost/information_schema/INNODB_FT_BEING_DELETED","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_FT_BEING_DELETED","FullyQualifiedName":"localhost/information_schema/INNODB_FT_BEING_DELETED","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_FT_BEING_DELETED","FullyQualifiedName":"localhost/information_schema/INNODB_FT_BEING_DELETED","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_FT_BEING_DELETED","FullyQualifiedName":"localhost/information_schema/INNODB_FT_BEING_DELETED","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_FT_CONFIG","FullyQualifiedName":"localhost/information_schema/INNODB_FT_CONFIG","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_FT_CONFIG","FullyQualifiedName":"localhost/information_schema/INNODB_FT_CONFIG","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_FT_CONFIG","FullyQualifiedName":"localhost/information_schema/INNODB_FT_CONFIG","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_FT_CONFIG","FullyQualifiedName":"localhost/information_schema/INNODB_FT_CONFIG","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_FT_CONFIG","FullyQualifiedName":"localhost/information_schema/INNODB_FT_CONFIG","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_FT_CONFIG","FullyQualifiedName":"localhost/information_schema/INNODB_FT_CONFIG","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_FT_CONFIG","FullyQualifiedName":"localhost/information_schema/INNODB_FT_CONFIG","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_FT_CONFIG","FullyQualifiedName":"localhost/information_schema/INNODB_FT_CONFIG","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_FT_CONFIG","FullyQualifiedName":"localhost/information_schema/INNODB_FT_CONFIG","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_FT_CONFIG","FullyQualifiedName":"localhost/information_schema/INNODB_FT_CONFIG","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_FT_CONFIG","FullyQualifiedName":"localhost/information_schema/INNODB_FT_CONFIG","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_FT_CONFIG","FullyQualifiedName":"localhost/information_schema/INNODB_FT_CONFIG","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_FT_DEFAULT_STOPWORD","FullyQualifiedName":"localhost/information_schema/INNODB_FT_DEFAULT_STOPWORD","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_FT_DEFAULT_STOPWORD","FullyQualifiedName":"localhost/information_schema/INNODB_FT_DEFAULT_STOPWORD","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_FT_DEFAULT_STOPWORD","FullyQualifiedName":"localhost/information_schema/INNODB_FT_DEFAULT_STOPWORD","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_FT_DEFAULT_STOPWORD","FullyQualifiedName":"localhost/information_schema/INNODB_FT_DEFAULT_STOPWORD","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_FT_DEFAULT_STOPWORD","FullyQualifiedName":"localhost/information_schema/INNODB_FT_DEFAULT_STOPWORD","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_FT_DEFAULT_STOPWORD","FullyQualifiedName":"localhost/information_schema/INNODB_FT_DEFAULT_STOPWORD","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_FT_DEFAULT_STOPWORD","FullyQualifiedName":"localhost/information_schema/INNODB_FT_DEFAULT_STOPWORD","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_FT_DEFAULT_STOPWORD","FullyQualifiedName":"localhost/information_schema/INNODB_FT_DEFAULT_STOPWORD","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_FT_DEFAULT_STOPWORD","FullyQualifiedName":"localhost/information_schema/INNODB_FT_DEFAULT_STOPWORD","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_FT_DEFAULT_STOPWORD","FullyQualifiedName":"localhost/information_schema/INNODB_FT_DEFAULT_STOPWORD","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_FT_DEFAULT_STOPWORD","FullyQualifiedName":"localhost/information_schema/INNODB_FT_DEFAULT_STOPWORD","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_FT_DEFAULT_STOPWORD","FullyQualifiedName":"localhost/information_schema/INNODB_FT_DEFAULT_STOPWORD","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_FT_DELETED","FullyQualifiedName":"localhost/information_schema/INNODB_FT_DELETED","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_FT_DELETED","FullyQualifiedName":"localhost/information_schema/INNODB_FT_DELETED","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_FT_DELETED","FullyQualifiedName":"localhost/information_schema/INNODB_FT_DELETED","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_FT_DELETED","FullyQualifiedName":"localhost/information_schema/INNODB_FT_DELETED","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_FT_DELETED","FullyQualifiedName":"localhost/information_schema/INNODB_FT_DELETED","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_FT_DELETED","FullyQualifiedName":"localhost/information_schema/INNODB_FT_DELETED","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_FT_DELETED","FullyQualifiedName":"localhost/information_schema/INNODB_FT_DELETED","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_FT_DELETED","FullyQualifiedName":"localhost/information_schema/INNODB_FT_DELETED","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_FT_DELETED","FullyQualifiedName":"localhost/information_schema/INNODB_FT_DELETED","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_FT_DELETED","FullyQualifiedName":"localhost/information_schema/INNODB_FT_DELETED","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_FT_DELETED","FullyQualifiedName":"localhost/information_schema/INNODB_FT_DELETED","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_FT_DELETED","FullyQualifiedName":"localhost/information_schema/INNODB_FT_DELETED","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_FT_INDEX_CACHE","FullyQualifiedName":"localhost/information_schema/INNODB_FT_INDEX_CACHE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_FT_INDEX_CACHE","FullyQualifiedName":"localhost/information_schema/INNODB_FT_INDEX_CACHE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_FT_INDEX_CACHE","FullyQualifiedName":"localhost/information_schema/INNODB_FT_INDEX_CACHE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_FT_INDEX_CACHE","FullyQualifiedName":"localhost/information_schema/INNODB_FT_INDEX_CACHE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_FT_INDEX_CACHE","FullyQualifiedName":"localhost/information_schema/INNODB_FT_INDEX_CACHE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_FT_INDEX_CACHE","FullyQualifiedName":"localhost/information_schema/INNODB_FT_INDEX_CACHE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_FT_INDEX_CACHE","FullyQualifiedName":"localhost/information_schema/INNODB_FT_INDEX_CACHE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_FT_INDEX_CACHE","FullyQualifiedName":"localhost/information_schema/INNODB_FT_INDEX_CACHE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_FT_INDEX_CACHE","FullyQualifiedName":"localhost/information_schema/INNODB_FT_INDEX_CACHE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_FT_INDEX_CACHE","FullyQualifiedName":"localhost/information_schema/INNODB_FT_INDEX_CACHE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_FT_INDEX_CACHE","FullyQualifiedName":"localhost/information_schema/INNODB_FT_INDEX_CACHE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_FT_INDEX_CACHE","FullyQualifiedName":"localhost/information_schema/INNODB_FT_INDEX_CACHE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_FT_INDEX_TABLE","FullyQualifiedName":"localhost/information_schema/INNODB_FT_INDEX_TABLE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_FT_INDEX_TABLE","FullyQualifiedName":"localhost/information_schema/INNODB_FT_INDEX_TABLE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_FT_INDEX_TABLE","FullyQualifiedName":"localhost/information_schema/INNODB_FT_INDEX_TABLE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_FT_INDEX_TABLE","FullyQualifiedName":"localhost/information_schema/INNODB_FT_INDEX_TABLE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_FT_INDEX_TABLE","FullyQualifiedName":"localhost/information_schema/INNODB_FT_INDEX_TABLE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_FT_INDEX_TABLE","FullyQualifiedName":"localhost/information_schema/INNODB_FT_INDEX_TABLE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_FT_INDEX_TABLE","FullyQualifiedName":"localhost/information_schema/INNODB_FT_INDEX_TABLE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_FT_INDEX_TABLE","FullyQualifiedName":"localhost/information_schema/INNODB_FT_INDEX_TABLE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_FT_INDEX_TABLE","FullyQualifiedName":"localhost/information_schema/INNODB_FT_INDEX_TABLE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_FT_INDEX_TABLE","FullyQualifiedName":"localhost/information_schema/INNODB_FT_INDEX_TABLE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_FT_INDEX_TABLE","FullyQualifiedName":"localhost/information_schema/INNODB_FT_INDEX_TABLE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_FT_INDEX_TABLE","FullyQualifiedName":"localhost/information_schema/INNODB_FT_INDEX_TABLE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_INDEXES","FullyQualifiedName":"localhost/information_schema/INNODB_INDEXES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_INDEXES","FullyQualifiedName":"localhost/information_schema/INNODB_INDEXES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_INDEXES","FullyQualifiedName":"localhost/information_schema/INNODB_INDEXES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_INDEXES","FullyQualifiedName":"localhost/information_schema/INNODB_INDEXES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_INDEXES","FullyQualifiedName":"localhost/information_schema/INNODB_INDEXES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_INDEXES","FullyQualifiedName":"localhost/information_schema/INNODB_INDEXES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_INDEXES","FullyQualifiedName":"localhost/information_schema/INNODB_INDEXES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_INDEXES","FullyQualifiedName":"localhost/information_schema/INNODB_INDEXES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_INDEXES","FullyQualifiedName":"localhost/information_schema/INNODB_INDEXES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_INDEXES","FullyQualifiedName":"localhost/information_schema/INNODB_INDEXES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_INDEXES","FullyQualifiedName":"localhost/information_schema/INNODB_INDEXES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_INDEXES","FullyQualifiedName":"localhost/information_schema/INNODB_INDEXES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_METRICS","FullyQualifiedName":"localhost/information_schema/INNODB_METRICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_METRICS","FullyQualifiedName":"localhost/information_schema/INNODB_METRICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_METRICS","FullyQualifiedName":"localhost/information_schema/INNODB_METRICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_METRICS","FullyQualifiedName":"localhost/information_schema/INNODB_METRICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_METRICS","FullyQualifiedName":"localhost/information_schema/INNODB_METRICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_METRICS","FullyQualifiedName":"localhost/information_schema/INNODB_METRICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_METRICS","FullyQualifiedName":"localhost/information_schema/INNODB_METRICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_METRICS","FullyQualifiedName":"localhost/information_schema/INNODB_METRICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_METRICS","FullyQualifiedName":"localhost/information_schema/INNODB_METRICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_METRICS","FullyQualifiedName":"localhost/information_schema/INNODB_METRICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_METRICS","FullyQualifiedName":"localhost/information_schema/INNODB_METRICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_METRICS","FullyQualifiedName":"localhost/information_schema/INNODB_METRICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_SESSION_TEMP_TABLESPACES","FullyQualifiedName":"localhost/information_schema/INNODB_SESSION_TEMP_TABLESPACES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_SESSION_TEMP_TABLESPACES","FullyQualifiedName":"localhost/information_schema/INNODB_SESSION_TEMP_TABLESPACES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_SESSION_TEMP_TABLESPACES","FullyQualifiedName":"localhost/information_schema/INNODB_SESSION_TEMP_TABLESPACES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_SESSION_TEMP_TABLESPACES","FullyQualifiedName":"localhost/information_schema/INNODB_SESSION_TEMP_TABLESPACES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_SESSION_TEMP_TABLESPACES","FullyQualifiedName":"localhost/information_schema/INNODB_SESSION_TEMP_TABLESPACES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_SESSION_TEMP_TABLESPACES","FullyQualifiedName":"localhost/information_schema/INNODB_SESSION_TEMP_TABLESPACES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_SESSION_TEMP_TABLESPACES","FullyQualifiedName":"localhost/information_schema/INNODB_SESSION_TEMP_TABLESPACES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_SESSION_TEMP_TABLESPACES","FullyQualifiedName":"localhost/information_schema/INNODB_SESSION_TEMP_TABLESPACES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_SESSION_TEMP_TABLESPACES","FullyQualifiedName":"localhost/information_schema/INNODB_SESSION_TEMP_TABLESPACES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_SESSION_TEMP_TABLESPACES","FullyQualifiedName":"localhost/information_schema/INNODB_SESSION_TEMP_TABLESPACES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_SESSION_TEMP_TABLESPACES","FullyQualifiedName":"localhost/information_schema/INNODB_SESSION_TEMP_TABLESPACES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_SESSION_TEMP_TABLESPACES","FullyQualifiedName":"localhost/information_schema/INNODB_SESSION_TEMP_TABLESPACES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_TABLES","FullyQualifiedName":"localhost/information_schema/INNODB_TABLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_TABLES","FullyQualifiedName":"localhost/information_schema/INNODB_TABLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_TABLES","FullyQualifiedName":"localhost/information_schema/INNODB_TABLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_TABLES","FullyQualifiedName":"localhost/information_schema/INNODB_TABLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_TABLES","FullyQualifiedName":"localhost/information_schema/INNODB_TABLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_TABLES","FullyQualifiedName":"localhost/information_schema/INNODB_TABLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_TABLES","FullyQualifiedName":"localhost/information_schema/INNODB_TABLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_TABLES","FullyQualifiedName":"localhost/information_schema/INNODB_TABLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_TABLES","FullyQualifiedName":"localhost/information_schema/INNODB_TABLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_TABLES","FullyQualifiedName":"localhost/information_schema/INNODB_TABLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_TABLES","FullyQualifiedName":"localhost/information_schema/INNODB_TABLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_TABLES","FullyQualifiedName":"localhost/information_schema/INNODB_TABLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_TABLESPACES","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESPACES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_TABLESPACES","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESPACES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_TABLESPACES","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESPACES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_TABLESPACES","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESPACES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_TABLESPACES","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESPACES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_TABLESPACES","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESPACES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_TABLESPACES","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESPACES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_TABLESPACES","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESPACES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_TABLESPACES","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESPACES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_TABLESPACES","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESPACES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_TABLESPACES","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESPACES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_TABLESPACES","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESPACES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_TABLESPACES_BRIEF","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESPACES_BRIEF","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_TABLESPACES_BRIEF","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESPACES_BRIEF","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_TABLESPACES_BRIEF","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESPACES_BRIEF","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_TABLESPACES_BRIEF","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESPACES_BRIEF","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_TABLESPACES_BRIEF","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESPACES_BRIEF","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_TABLESPACES_BRIEF","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESPACES_BRIEF","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_TABLESPACES_BRIEF","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESPACES_BRIEF","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_TABLESPACES_BRIEF","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESPACES_BRIEF","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_TABLESPACES_BRIEF","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESPACES_BRIEF","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_TABLESPACES_BRIEF","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESPACES_BRIEF","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_TABLESPACES_BRIEF","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESPACES_BRIEF","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_TABLESPACES_BRIEF","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESPACES_BRIEF","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_TABLESTATS","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESTATS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_TABLESTATS","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESTATS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_TABLESTATS","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESTATS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_TABLESTATS","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESTATS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_TABLESTATS","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESTATS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_TABLESTATS","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESTATS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_TABLESTATS","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESTATS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_TABLESTATS","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESTATS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_TABLESTATS","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESTATS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_TABLESTATS","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESTATS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_TABLESTATS","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESTATS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_TABLESTATS","FullyQualifiedName":"localhost/information_schema/INNODB_TABLESTATS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_TEMP_TABLE_INFO","FullyQualifiedName":"localhost/information_schema/INNODB_TEMP_TABLE_INFO","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_TEMP_TABLE_INFO","FullyQualifiedName":"localhost/information_schema/INNODB_TEMP_TABLE_INFO","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_TEMP_TABLE_INFO","FullyQualifiedName":"localhost/information_schema/INNODB_TEMP_TABLE_INFO","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_TEMP_TABLE_INFO","FullyQualifiedName":"localhost/information_schema/INNODB_TEMP_TABLE_INFO","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_TEMP_TABLE_INFO","FullyQualifiedName":"localhost/information_schema/INNODB_TEMP_TABLE_INFO","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_TEMP_TABLE_INFO","FullyQualifiedName":"localhost/information_schema/INNODB_TEMP_TABLE_INFO","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_TEMP_TABLE_INFO","FullyQualifiedName":"localhost/information_schema/INNODB_TEMP_TABLE_INFO","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_TEMP_TABLE_INFO","FullyQualifiedName":"localhost/information_schema/INNODB_TEMP_TABLE_INFO","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_TEMP_TABLE_INFO","FullyQualifiedName":"localhost/information_schema/INNODB_TEMP_TABLE_INFO","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_TEMP_TABLE_INFO","FullyQualifiedName":"localhost/information_schema/INNODB_TEMP_TABLE_INFO","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_TEMP_TABLE_INFO","FullyQualifiedName":"localhost/information_schema/INNODB_TEMP_TABLE_INFO","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_TEMP_TABLE_INFO","FullyQualifiedName":"localhost/information_schema/INNODB_TEMP_TABLE_INFO","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_TRX","FullyQualifiedName":"localhost/information_schema/INNODB_TRX","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_TRX","FullyQualifiedName":"localhost/information_schema/INNODB_TRX","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_TRX","FullyQualifiedName":"localhost/information_schema/INNODB_TRX","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_TRX","FullyQualifiedName":"localhost/information_schema/INNODB_TRX","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_TRX","FullyQualifiedName":"localhost/information_schema/INNODB_TRX","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_TRX","FullyQualifiedName":"localhost/information_schema/INNODB_TRX","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_TRX","FullyQualifiedName":"localhost/information_schema/INNODB_TRX","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_TRX","FullyQualifiedName":"localhost/information_schema/INNODB_TRX","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_TRX","FullyQualifiedName":"localhost/information_schema/INNODB_TRX","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_TRX","FullyQualifiedName":"localhost/information_schema/INNODB_TRX","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_TRX","FullyQualifiedName":"localhost/information_schema/INNODB_TRX","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_TRX","FullyQualifiedName":"localhost/information_schema/INNODB_TRX","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"INNODB_VIRTUAL","FullyQualifiedName":"localhost/information_schema/INNODB_VIRTUAL","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"INNODB_VIRTUAL","FullyQualifiedName":"localhost/information_schema/INNODB_VIRTUAL","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"INNODB_VIRTUAL","FullyQualifiedName":"localhost/information_schema/INNODB_VIRTUAL","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"INNODB_VIRTUAL","FullyQualifiedName":"localhost/information_schema/INNODB_VIRTUAL","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"INNODB_VIRTUAL","FullyQualifiedName":"localhost/information_schema/INNODB_VIRTUAL","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"INNODB_VIRTUAL","FullyQualifiedName":"localhost/information_schema/INNODB_VIRTUAL","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"INNODB_VIRTUAL","FullyQualifiedName":"localhost/information_schema/INNODB_VIRTUAL","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"INNODB_VIRTUAL","FullyQualifiedName":"localhost/information_schema/INNODB_VIRTUAL","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"INNODB_VIRTUAL","FullyQualifiedName":"localhost/information_schema/INNODB_VIRTUAL","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"INNODB_VIRTUAL","FullyQualifiedName":"localhost/information_schema/INNODB_VIRTUAL","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"INNODB_VIRTUAL","FullyQualifiedName":"localhost/information_schema/INNODB_VIRTUAL","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"INNODB_VIRTUAL","FullyQualifiedName":"localhost/information_schema/INNODB_VIRTUAL","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"KEYWORDS","FullyQualifiedName":"localhost/information_schema/KEYWORDS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"KEYWORDS","FullyQualifiedName":"localhost/information_schema/KEYWORDS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"KEYWORDS","FullyQualifiedName":"localhost/information_schema/KEYWORDS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"KEYWORDS","FullyQualifiedName":"localhost/information_schema/KEYWORDS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"KEYWORDS","FullyQualifiedName":"localhost/information_schema/KEYWORDS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"KEYWORDS","FullyQualifiedName":"localhost/information_schema/KEYWORDS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"KEYWORDS","FullyQualifiedName":"localhost/information_schema/KEYWORDS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"KEYWORDS","FullyQualifiedName":"localhost/information_schema/KEYWORDS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"KEYWORDS","FullyQualifiedName":"localhost/information_schema/KEYWORDS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"KEYWORDS","FullyQualifiedName":"localhost/information_schema/KEYWORDS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"KEYWORDS","FullyQualifiedName":"localhost/information_schema/KEYWORDS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"KEYWORDS","FullyQualifiedName":"localhost/information_schema/KEYWORDS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"KEY_COLUMN_USAGE","FullyQualifiedName":"localhost/information_schema/KEY_COLUMN_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"KEY_COLUMN_USAGE","FullyQualifiedName":"localhost/information_schema/KEY_COLUMN_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"KEY_COLUMN_USAGE","FullyQualifiedName":"localhost/information_schema/KEY_COLUMN_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"KEY_COLUMN_USAGE","FullyQualifiedName":"localhost/information_schema/KEY_COLUMN_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"KEY_COLUMN_USAGE","FullyQualifiedName":"localhost/information_schema/KEY_COLUMN_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"KEY_COLUMN_USAGE","FullyQualifiedName":"localhost/information_schema/KEY_COLUMN_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"KEY_COLUMN_USAGE","FullyQualifiedName":"localhost/information_schema/KEY_COLUMN_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"KEY_COLUMN_USAGE","FullyQualifiedName":"localhost/information_schema/KEY_COLUMN_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"KEY_COLUMN_USAGE","FullyQualifiedName":"localhost/information_schema/KEY_COLUMN_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"KEY_COLUMN_USAGE","FullyQualifiedName":"localhost/information_schema/KEY_COLUMN_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"KEY_COLUMN_USAGE","FullyQualifiedName":"localhost/information_schema/KEY_COLUMN_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"KEY_COLUMN_USAGE","FullyQualifiedName":"localhost/information_schema/KEY_COLUMN_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"OPTIMIZER_TRACE","FullyQualifiedName":"localhost/information_schema/OPTIMIZER_TRACE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"OPTIMIZER_TRACE","FullyQualifiedName":"localhost/information_schema/OPTIMIZER_TRACE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"OPTIMIZER_TRACE","FullyQualifiedName":"localhost/information_schema/OPTIMIZER_TRACE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"OPTIMIZER_TRACE","FullyQualifiedName":"localhost/information_schema/OPTIMIZER_TRACE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"OPTIMIZER_TRACE","FullyQualifiedName":"localhost/information_schema/OPTIMIZER_TRACE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"OPTIMIZER_TRACE","FullyQualifiedName":"localhost/information_schema/OPTIMIZER_TRACE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"OPTIMIZER_TRACE","FullyQualifiedName":"localhost/information_schema/OPTIMIZER_TRACE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"OPTIMIZER_TRACE","FullyQualifiedName":"localhost/information_schema/OPTIMIZER_TRACE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"OPTIMIZER_TRACE","FullyQualifiedName":"localhost/information_schema/OPTIMIZER_TRACE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"OPTIMIZER_TRACE","FullyQualifiedName":"localhost/information_schema/OPTIMIZER_TRACE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"OPTIMIZER_TRACE","FullyQualifiedName":"localhost/information_schema/OPTIMIZER_TRACE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"OPTIMIZER_TRACE","FullyQualifiedName":"localhost/information_schema/OPTIMIZER_TRACE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"PARAMETERS","FullyQualifiedName":"localhost/information_schema/PARAMETERS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"PARAMETERS","FullyQualifiedName":"localhost/information_schema/PARAMETERS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"PARAMETERS","FullyQualifiedName":"localhost/information_schema/PARAMETERS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"PARAMETERS","FullyQualifiedName":"localhost/information_schema/PARAMETERS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"PARAMETERS","FullyQualifiedName":"localhost/information_schema/PARAMETERS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"PARAMETERS","FullyQualifiedName":"localhost/information_schema/PARAMETERS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"PARAMETERS","FullyQualifiedName":"localhost/information_schema/PARAMETERS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"PARAMETERS","FullyQualifiedName":"localhost/information_schema/PARAMETERS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"PARAMETERS","FullyQualifiedName":"localhost/information_schema/PARAMETERS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"PARAMETERS","FullyQualifiedName":"localhost/information_schema/PARAMETERS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"PARAMETERS","FullyQualifiedName":"localhost/information_schema/PARAMETERS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"PARAMETERS","FullyQualifiedName":"localhost/information_schema/PARAMETERS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"PARTITIONS","FullyQualifiedName":"localhost/information_schema/PARTITIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"PARTITIONS","FullyQualifiedName":"localhost/information_schema/PARTITIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"PARTITIONS","FullyQualifiedName":"localhost/information_schema/PARTITIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"PARTITIONS","FullyQualifiedName":"localhost/information_schema/PARTITIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"PARTITIONS","FullyQualifiedName":"localhost/information_schema/PARTITIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"PARTITIONS","FullyQualifiedName":"localhost/information_schema/PARTITIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"PARTITIONS","FullyQualifiedName":"localhost/information_schema/PARTITIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"PARTITIONS","FullyQualifiedName":"localhost/information_schema/PARTITIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"PARTITIONS","FullyQualifiedName":"localhost/information_schema/PARTITIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"PARTITIONS","FullyQualifiedName":"localhost/information_schema/PARTITIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"PARTITIONS","FullyQualifiedName":"localhost/information_schema/PARTITIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"PARTITIONS","FullyQualifiedName":"localhost/information_schema/PARTITIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"PLUGINS","FullyQualifiedName":"localhost/information_schema/PLUGINS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"PLUGINS","FullyQualifiedName":"localhost/information_schema/PLUGINS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"PLUGINS","FullyQualifiedName":"localhost/information_schema/PLUGINS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"PLUGINS","FullyQualifiedName":"localhost/information_schema/PLUGINS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"PLUGINS","FullyQualifiedName":"localhost/information_schema/PLUGINS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"PLUGINS","FullyQualifiedName":"localhost/information_schema/PLUGINS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"PLUGINS","FullyQualifiedName":"localhost/information_schema/PLUGINS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"PLUGINS","FullyQualifiedName":"localhost/information_schema/PLUGINS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"PLUGINS","FullyQualifiedName":"localhost/information_schema/PLUGINS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"PLUGINS","FullyQualifiedName":"localhost/information_schema/PLUGINS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"PLUGINS","FullyQualifiedName":"localhost/information_schema/PLUGINS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"PLUGINS","FullyQualifiedName":"localhost/information_schema/PLUGINS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"PROCESSLIST","FullyQualifiedName":"localhost/information_schema/PROCESSLIST","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"PROCESSLIST","FullyQualifiedName":"localhost/information_schema/PROCESSLIST","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"PROCESSLIST","FullyQualifiedName":"localhost/information_schema/PROCESSLIST","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"PROCESSLIST","FullyQualifiedName":"localhost/information_schema/PROCESSLIST","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"PROCESSLIST","FullyQualifiedName":"localhost/information_schema/PROCESSLIST","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"PROCESSLIST","FullyQualifiedName":"localhost/information_schema/PROCESSLIST","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"PROCESSLIST","FullyQualifiedName":"localhost/information_schema/PROCESSLIST","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"PROCESSLIST","FullyQualifiedName":"localhost/information_schema/PROCESSLIST","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"PROCESSLIST","FullyQualifiedName":"localhost/information_schema/PROCESSLIST","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"PROCESSLIST","FullyQualifiedName":"localhost/information_schema/PROCESSLIST","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"PROCESSLIST","FullyQualifiedName":"localhost/information_schema/PROCESSLIST","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"PROCESSLIST","FullyQualifiedName":"localhost/information_schema/PROCESSLIST","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"PROFILING","FullyQualifiedName":"localhost/information_schema/PROFILING","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"PROFILING","FullyQualifiedName":"localhost/information_schema/PROFILING","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"PROFILING","FullyQualifiedName":"localhost/information_schema/PROFILING","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"PROFILING","FullyQualifiedName":"localhost/information_schema/PROFILING","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"PROFILING","FullyQualifiedName":"localhost/information_schema/PROFILING","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"PROFILING","FullyQualifiedName":"localhost/information_schema/PROFILING","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"PROFILING","FullyQualifiedName":"localhost/information_schema/PROFILING","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"PROFILING","FullyQualifiedName":"localhost/information_schema/PROFILING","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"PROFILING","FullyQualifiedName":"localhost/information_schema/PROFILING","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"PROFILING","FullyQualifiedName":"localhost/information_schema/PROFILING","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"PROFILING","FullyQualifiedName":"localhost/information_schema/PROFILING","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"PROFILING","FullyQualifiedName":"localhost/information_schema/PROFILING","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"REFERENTIAL_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/REFERENTIAL_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"REFERENTIAL_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/REFERENTIAL_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"REFERENTIAL_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/REFERENTIAL_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"REFERENTIAL_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/REFERENTIAL_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"REFERENTIAL_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/REFERENTIAL_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"REFERENTIAL_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/REFERENTIAL_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"REFERENTIAL_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/REFERENTIAL_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"REFERENTIAL_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/REFERENTIAL_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"REFERENTIAL_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/REFERENTIAL_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"REFERENTIAL_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/REFERENTIAL_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"REFERENTIAL_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/REFERENTIAL_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"REFERENTIAL_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/REFERENTIAL_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"RESOURCE_GROUPS","FullyQualifiedName":"localhost/information_schema/RESOURCE_GROUPS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"RESOURCE_GROUPS","FullyQualifiedName":"localhost/information_schema/RESOURCE_GROUPS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"RESOURCE_GROUPS","FullyQualifiedName":"localhost/information_schema/RESOURCE_GROUPS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"RESOURCE_GROUPS","FullyQualifiedName":"localhost/information_schema/RESOURCE_GROUPS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"RESOURCE_GROUPS","FullyQualifiedName":"localhost/information_schema/RESOURCE_GROUPS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"RESOURCE_GROUPS","FullyQualifiedName":"localhost/information_schema/RESOURCE_GROUPS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"RESOURCE_GROUPS","FullyQualifiedName":"localhost/information_schema/RESOURCE_GROUPS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"RESOURCE_GROUPS","FullyQualifiedName":"localhost/information_schema/RESOURCE_GROUPS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"RESOURCE_GROUPS","FullyQualifiedName":"localhost/information_schema/RESOURCE_GROUPS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"RESOURCE_GROUPS","FullyQualifiedName":"localhost/information_schema/RESOURCE_GROUPS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"RESOURCE_GROUPS","FullyQualifiedName":"localhost/information_schema/RESOURCE_GROUPS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"RESOURCE_GROUPS","FullyQualifiedName":"localhost/information_schema/RESOURCE_GROUPS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"ROLE_COLUMN_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_COLUMN_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"ROLE_COLUMN_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_COLUMN_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"ROLE_COLUMN_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_COLUMN_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"ROLE_COLUMN_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_COLUMN_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"ROLE_COLUMN_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_COLUMN_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"ROLE_COLUMN_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_COLUMN_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"ROLE_COLUMN_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_COLUMN_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"ROLE_COLUMN_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_COLUMN_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"ROLE_COLUMN_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_COLUMN_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"ROLE_COLUMN_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_COLUMN_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"ROLE_COLUMN_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_COLUMN_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"ROLE_COLUMN_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_COLUMN_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"ROLE_ROUTINE_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_ROUTINE_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"ROLE_ROUTINE_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_ROUTINE_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"ROLE_ROUTINE_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_ROUTINE_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"ROLE_ROUTINE_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_ROUTINE_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"ROLE_ROUTINE_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_ROUTINE_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"ROLE_ROUTINE_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_ROUTINE_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"ROLE_ROUTINE_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_ROUTINE_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"ROLE_ROUTINE_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_ROUTINE_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"ROLE_ROUTINE_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_ROUTINE_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"ROLE_ROUTINE_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_ROUTINE_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"ROLE_ROUTINE_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_ROUTINE_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"ROLE_ROUTINE_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_ROUTINE_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"ROLE_TABLE_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_TABLE_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"ROLE_TABLE_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_TABLE_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"ROLE_TABLE_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_TABLE_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"ROLE_TABLE_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_TABLE_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"ROLE_TABLE_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_TABLE_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"ROLE_TABLE_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_TABLE_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"ROLE_TABLE_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_TABLE_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"ROLE_TABLE_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_TABLE_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"ROLE_TABLE_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_TABLE_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"ROLE_TABLE_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_TABLE_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"ROLE_TABLE_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_TABLE_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"ROLE_TABLE_GRANTS","FullyQualifiedName":"localhost/information_schema/ROLE_TABLE_GRANTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"ROUTINES","FullyQualifiedName":"localhost/information_schema/ROUTINES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"ROUTINES","FullyQualifiedName":"localhost/information_schema/ROUTINES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"ROUTINES","FullyQualifiedName":"localhost/information_schema/ROUTINES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"ROUTINES","FullyQualifiedName":"localhost/information_schema/ROUTINES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"ROUTINES","FullyQualifiedName":"localhost/information_schema/ROUTINES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"ROUTINES","FullyQualifiedName":"localhost/information_schema/ROUTINES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"ROUTINES","FullyQualifiedName":"localhost/information_schema/ROUTINES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"ROUTINES","FullyQualifiedName":"localhost/information_schema/ROUTINES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"ROUTINES","FullyQualifiedName":"localhost/information_schema/ROUTINES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"ROUTINES","FullyQualifiedName":"localhost/information_schema/ROUTINES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"ROUTINES","FullyQualifiedName":"localhost/information_schema/ROUTINES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"ROUTINES","FullyQualifiedName":"localhost/information_schema/ROUTINES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"SCHEMATA","FullyQualifiedName":"localhost/information_schema/SCHEMATA","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"SCHEMATA","FullyQualifiedName":"localhost/information_schema/SCHEMATA","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"SCHEMATA","FullyQualifiedName":"localhost/information_schema/SCHEMATA","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"SCHEMATA","FullyQualifiedName":"localhost/information_schema/SCHEMATA","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"SCHEMATA","FullyQualifiedName":"localhost/information_schema/SCHEMATA","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"SCHEMATA","FullyQualifiedName":"localhost/information_schema/SCHEMATA","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"SCHEMATA","FullyQualifiedName":"localhost/information_schema/SCHEMATA","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"SCHEMATA","FullyQualifiedName":"localhost/information_schema/SCHEMATA","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"SCHEMATA","FullyQualifiedName":"localhost/information_schema/SCHEMATA","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"SCHEMATA","FullyQualifiedName":"localhost/information_schema/SCHEMATA","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"SCHEMATA","FullyQualifiedName":"localhost/information_schema/SCHEMATA","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"SCHEMATA","FullyQualifiedName":"localhost/information_schema/SCHEMATA","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"SCHEMATA_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/SCHEMATA_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"SCHEMATA_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/SCHEMATA_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"SCHEMATA_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/SCHEMATA_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"SCHEMATA_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/SCHEMATA_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"SCHEMATA_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/SCHEMATA_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"SCHEMATA_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/SCHEMATA_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"SCHEMATA_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/SCHEMATA_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"SCHEMATA_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/SCHEMATA_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"SCHEMATA_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/SCHEMATA_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"SCHEMATA_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/SCHEMATA_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"SCHEMATA_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/SCHEMATA_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"SCHEMATA_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/SCHEMATA_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"SCHEMA_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/SCHEMA_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"SCHEMA_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/SCHEMA_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"SCHEMA_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/SCHEMA_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"SCHEMA_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/SCHEMA_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"SCHEMA_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/SCHEMA_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"SCHEMA_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/SCHEMA_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"SCHEMA_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/SCHEMA_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"SCHEMA_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/SCHEMA_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"SCHEMA_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/SCHEMA_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"SCHEMA_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/SCHEMA_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"SCHEMA_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/SCHEMA_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"SCHEMA_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/SCHEMA_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"STATISTICS","FullyQualifiedName":"localhost/information_schema/STATISTICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"STATISTICS","FullyQualifiedName":"localhost/information_schema/STATISTICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"STATISTICS","FullyQualifiedName":"localhost/information_schema/STATISTICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"STATISTICS","FullyQualifiedName":"localhost/information_schema/STATISTICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"STATISTICS","FullyQualifiedName":"localhost/information_schema/STATISTICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"STATISTICS","FullyQualifiedName":"localhost/information_schema/STATISTICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"STATISTICS","FullyQualifiedName":"localhost/information_schema/STATISTICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"STATISTICS","FullyQualifiedName":"localhost/information_schema/STATISTICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"STATISTICS","FullyQualifiedName":"localhost/information_schema/STATISTICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"STATISTICS","FullyQualifiedName":"localhost/information_schema/STATISTICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"STATISTICS","FullyQualifiedName":"localhost/information_schema/STATISTICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"STATISTICS","FullyQualifiedName":"localhost/information_schema/STATISTICS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"ST_GEOMETRY_COLUMNS","FullyQualifiedName":"localhost/information_schema/ST_GEOMETRY_COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"ST_GEOMETRY_COLUMNS","FullyQualifiedName":"localhost/information_schema/ST_GEOMETRY_COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"ST_GEOMETRY_COLUMNS","FullyQualifiedName":"localhost/information_schema/ST_GEOMETRY_COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"ST_GEOMETRY_COLUMNS","FullyQualifiedName":"localhost/information_schema/ST_GEOMETRY_COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"ST_GEOMETRY_COLUMNS","FullyQualifiedName":"localhost/information_schema/ST_GEOMETRY_COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"ST_GEOMETRY_COLUMNS","FullyQualifiedName":"localhost/information_schema/ST_GEOMETRY_COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"ST_GEOMETRY_COLUMNS","FullyQualifiedName":"localhost/information_schema/ST_GEOMETRY_COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"ST_GEOMETRY_COLUMNS","FullyQualifiedName":"localhost/information_schema/ST_GEOMETRY_COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"ST_GEOMETRY_COLUMNS","FullyQualifiedName":"localhost/information_schema/ST_GEOMETRY_COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"ST_GEOMETRY_COLUMNS","FullyQualifiedName":"localhost/information_schema/ST_GEOMETRY_COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"ST_GEOMETRY_COLUMNS","FullyQualifiedName":"localhost/information_schema/ST_GEOMETRY_COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"ST_GEOMETRY_COLUMNS","FullyQualifiedName":"localhost/information_schema/ST_GEOMETRY_COLUMNS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"ST_SPATIAL_REFERENCE_SYSTEMS","FullyQualifiedName":"localhost/information_schema/ST_SPATIAL_REFERENCE_SYSTEMS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"ST_SPATIAL_REFERENCE_SYSTEMS","FullyQualifiedName":"localhost/information_schema/ST_SPATIAL_REFERENCE_SYSTEMS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"ST_SPATIAL_REFERENCE_SYSTEMS","FullyQualifiedName":"localhost/information_schema/ST_SPATIAL_REFERENCE_SYSTEMS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"ST_SPATIAL_REFERENCE_SYSTEMS","FullyQualifiedName":"localhost/information_schema/ST_SPATIAL_REFERENCE_SYSTEMS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"ST_SPATIAL_REFERENCE_SYSTEMS","FullyQualifiedName":"localhost/information_schema/ST_SPATIAL_REFERENCE_SYSTEMS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"ST_SPATIAL_REFERENCE_SYSTEMS","FullyQualifiedName":"localhost/information_schema/ST_SPATIAL_REFERENCE_SYSTEMS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"ST_SPATIAL_REFERENCE_SYSTEMS","FullyQualifiedName":"localhost/information_schema/ST_SPATIAL_REFERENCE_SYSTEMS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"ST_SPATIAL_REFERENCE_SYSTEMS","FullyQualifiedName":"localhost/information_schema/ST_SPATIAL_REFERENCE_SYSTEMS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"ST_SPATIAL_REFERENCE_SYSTEMS","FullyQualifiedName":"localhost/information_schema/ST_SPATIAL_REFERENCE_SYSTEMS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"ST_SPATIAL_REFERENCE_SYSTEMS","FullyQualifiedName":"localhost/information_schema/ST_SPATIAL_REFERENCE_SYSTEMS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"ST_SPATIAL_REFERENCE_SYSTEMS","FullyQualifiedName":"localhost/information_schema/ST_SPATIAL_REFERENCE_SYSTEMS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"ST_SPATIAL_REFERENCE_SYSTEMS","FullyQualifiedName":"localhost/information_schema/ST_SPATIAL_REFERENCE_SYSTEMS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"ST_UNITS_OF_MEASURE","FullyQualifiedName":"localhost/information_schema/ST_UNITS_OF_MEASURE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"ST_UNITS_OF_MEASURE","FullyQualifiedName":"localhost/information_schema/ST_UNITS_OF_MEASURE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"ST_UNITS_OF_MEASURE","FullyQualifiedName":"localhost/information_schema/ST_UNITS_OF_MEASURE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"ST_UNITS_OF_MEASURE","FullyQualifiedName":"localhost/information_schema/ST_UNITS_OF_MEASURE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"ST_UNITS_OF_MEASURE","FullyQualifiedName":"localhost/information_schema/ST_UNITS_OF_MEASURE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"ST_UNITS_OF_MEASURE","FullyQualifiedName":"localhost/information_schema/ST_UNITS_OF_MEASURE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"ST_UNITS_OF_MEASURE","FullyQualifiedName":"localhost/information_schema/ST_UNITS_OF_MEASURE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"ST_UNITS_OF_MEASURE","FullyQualifiedName":"localhost/information_schema/ST_UNITS_OF_MEASURE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"ST_UNITS_OF_MEASURE","FullyQualifiedName":"localhost/information_schema/ST_UNITS_OF_MEASURE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"ST_UNITS_OF_MEASURE","FullyQualifiedName":"localhost/information_schema/ST_UNITS_OF_MEASURE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"ST_UNITS_OF_MEASURE","FullyQualifiedName":"localhost/information_schema/ST_UNITS_OF_MEASURE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"ST_UNITS_OF_MEASURE","FullyQualifiedName":"localhost/information_schema/ST_UNITS_OF_MEASURE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"TABLES","FullyQualifiedName":"localhost/information_schema/TABLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"TABLES","FullyQualifiedName":"localhost/information_schema/TABLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"TABLES","FullyQualifiedName":"localhost/information_schema/TABLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"TABLES","FullyQualifiedName":"localhost/information_schema/TABLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"TABLES","FullyQualifiedName":"localhost/information_schema/TABLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"TABLES","FullyQualifiedName":"localhost/information_schema/TABLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"TABLES","FullyQualifiedName":"localhost/information_schema/TABLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"TABLES","FullyQualifiedName":"localhost/information_schema/TABLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"TABLES","FullyQualifiedName":"localhost/information_schema/TABLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"TABLES","FullyQualifiedName":"localhost/information_schema/TABLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"TABLES","FullyQualifiedName":"localhost/information_schema/TABLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"TABLES","FullyQualifiedName":"localhost/information_schema/TABLES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"TABLESPACES_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLESPACES_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"TABLESPACES_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLESPACES_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"TABLESPACES_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLESPACES_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"TABLESPACES_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLESPACES_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"TABLESPACES_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLESPACES_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"TABLESPACES_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLESPACES_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"TABLESPACES_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLESPACES_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"TABLESPACES_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLESPACES_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"TABLESPACES_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLESPACES_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"TABLESPACES_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLESPACES_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"TABLESPACES_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLESPACES_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"TABLESPACES_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLESPACES_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"TABLES_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLES_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"TABLES_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLES_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"TABLES_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLES_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"TABLES_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLES_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"TABLES_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLES_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"TABLES_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLES_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"TABLES_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLES_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"TABLES_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLES_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"TABLES_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLES_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"TABLES_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLES_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"TABLES_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLES_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"TABLES_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLES_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"TABLE_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/TABLE_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"TABLE_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/TABLE_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"TABLE_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/TABLE_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"TABLE_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/TABLE_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"TABLE_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/TABLE_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"TABLE_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/TABLE_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"TABLE_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/TABLE_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"TABLE_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/TABLE_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"TABLE_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/TABLE_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"TABLE_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/TABLE_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"TABLE_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/TABLE_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"TABLE_CONSTRAINTS","FullyQualifiedName":"localhost/information_schema/TABLE_CONSTRAINTS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"TABLE_CONSTRAINTS_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLE_CONSTRAINTS_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"TABLE_CONSTRAINTS_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLE_CONSTRAINTS_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"TABLE_CONSTRAINTS_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLE_CONSTRAINTS_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"TABLE_CONSTRAINTS_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLE_CONSTRAINTS_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"TABLE_CONSTRAINTS_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLE_CONSTRAINTS_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"TABLE_CONSTRAINTS_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLE_CONSTRAINTS_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"TABLE_CONSTRAINTS_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLE_CONSTRAINTS_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"TABLE_CONSTRAINTS_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLE_CONSTRAINTS_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"TABLE_CONSTRAINTS_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLE_CONSTRAINTS_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"TABLE_CONSTRAINTS_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLE_CONSTRAINTS_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"TABLE_CONSTRAINTS_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLE_CONSTRAINTS_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"TABLE_CONSTRAINTS_EXTENSIONS","FullyQualifiedName":"localhost/information_schema/TABLE_CONSTRAINTS_EXTENSIONS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"TABLE_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/TABLE_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"TABLE_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/TABLE_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"TABLE_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/TABLE_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"TABLE_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/TABLE_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"TABLE_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/TABLE_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"TABLE_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/TABLE_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"TABLE_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/TABLE_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"TABLE_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/TABLE_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"TABLE_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/TABLE_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"TABLE_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/TABLE_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"TABLE_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/TABLE_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"TABLE_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/TABLE_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"TRIGGERS","FullyQualifiedName":"localhost/information_schema/TRIGGERS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"TRIGGERS","FullyQualifiedName":"localhost/information_schema/TRIGGERS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"TRIGGERS","FullyQualifiedName":"localhost/information_schema/TRIGGERS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"TRIGGERS","FullyQualifiedName":"localhost/information_schema/TRIGGERS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"TRIGGERS","FullyQualifiedName":"localhost/information_schema/TRIGGERS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"TRIGGERS","FullyQualifiedName":"localhost/information_schema/TRIGGERS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"TRIGGERS","FullyQualifiedName":"localhost/information_schema/TRIGGERS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"TRIGGERS","FullyQualifiedName":"localhost/information_schema/TRIGGERS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"TRIGGERS","FullyQualifiedName":"localhost/information_schema/TRIGGERS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"TRIGGERS","FullyQualifiedName":"localhost/information_schema/TRIGGERS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"TRIGGERS","FullyQualifiedName":"localhost/information_schema/TRIGGERS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"TRIGGERS","FullyQualifiedName":"localhost/information_schema/TRIGGERS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"USER_ATTRIBUTES","FullyQualifiedName":"localhost/information_schema/USER_ATTRIBUTES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"USER_ATTRIBUTES","FullyQualifiedName":"localhost/information_schema/USER_ATTRIBUTES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"USER_ATTRIBUTES","FullyQualifiedName":"localhost/information_schema/USER_ATTRIBUTES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"USER_ATTRIBUTES","FullyQualifiedName":"localhost/information_schema/USER_ATTRIBUTES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"USER_ATTRIBUTES","FullyQualifiedName":"localhost/information_schema/USER_ATTRIBUTES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"USER_ATTRIBUTES","FullyQualifiedName":"localhost/information_schema/USER_ATTRIBUTES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"USER_ATTRIBUTES","FullyQualifiedName":"localhost/information_schema/USER_ATTRIBUTES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"USER_ATTRIBUTES","FullyQualifiedName":"localhost/information_schema/USER_ATTRIBUTES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"USER_ATTRIBUTES","FullyQualifiedName":"localhost/information_schema/USER_ATTRIBUTES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"USER_ATTRIBUTES","FullyQualifiedName":"localhost/information_schema/USER_ATTRIBUTES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"USER_ATTRIBUTES","FullyQualifiedName":"localhost/information_schema/USER_ATTRIBUTES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"USER_ATTRIBUTES","FullyQualifiedName":"localhost/information_schema/USER_ATTRIBUTES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"USER_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/USER_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"USER_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/USER_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"USER_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/USER_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"USER_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/USER_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"USER_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/USER_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"USER_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/USER_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"USER_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/USER_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"USER_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/USER_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"USER_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/USER_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"USER_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/USER_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"USER_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/USER_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"USER_PRIVILEGES","FullyQualifiedName":"localhost/information_schema/USER_PRIVILEGES","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"VIEWS","FullyQualifiedName":"localhost/information_schema/VIEWS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"VIEWS","FullyQualifiedName":"localhost/information_schema/VIEWS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"VIEWS","FullyQualifiedName":"localhost/information_schema/VIEWS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"VIEWS","FullyQualifiedName":"localhost/information_schema/VIEWS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"VIEWS","FullyQualifiedName":"localhost/information_schema/VIEWS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"VIEWS","FullyQualifiedName":"localhost/information_schema/VIEWS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"VIEWS","FullyQualifiedName":"localhost/information_schema/VIEWS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"VIEWS","FullyQualifiedName":"localhost/information_schema/VIEWS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"VIEWS","FullyQualifiedName":"localhost/information_schema/VIEWS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"VIEWS","FullyQualifiedName":"localhost/information_schema/VIEWS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"VIEWS","FullyQualifiedName":"localhost/information_schema/VIEWS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"VIEWS","FullyQualifiedName":"localhost/information_schema/VIEWS","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"VIEW_ROUTINE_USAGE","FullyQualifiedName":"localhost/information_schema/VIEW_ROUTINE_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"VIEW_ROUTINE_USAGE","FullyQualifiedName":"localhost/information_schema/VIEW_ROUTINE_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"VIEW_ROUTINE_USAGE","FullyQualifiedName":"localhost/information_schema/VIEW_ROUTINE_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"VIEW_ROUTINE_USAGE","FullyQualifiedName":"localhost/information_schema/VIEW_ROUTINE_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"VIEW_ROUTINE_USAGE","FullyQualifiedName":"localhost/information_schema/VIEW_ROUTINE_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"VIEW_ROUTINE_USAGE","FullyQualifiedName":"localhost/information_schema/VIEW_ROUTINE_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"VIEW_ROUTINE_USAGE","FullyQualifiedName":"localhost/information_schema/VIEW_ROUTINE_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"VIEW_ROUTINE_USAGE","FullyQualifiedName":"localhost/information_schema/VIEW_ROUTINE_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"VIEW_ROUTINE_USAGE","FullyQualifiedName":"localhost/information_schema/VIEW_ROUTINE_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"VIEW_ROUTINE_USAGE","FullyQualifiedName":"localhost/information_schema/VIEW_ROUTINE_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"VIEW_ROUTINE_USAGE","FullyQualifiedName":"localhost/information_schema/VIEW_ROUTINE_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"VIEW_ROUTINE_USAGE","FullyQualifiedName":"localhost/information_schema/VIEW_ROUTINE_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"VIEW_TABLE_USAGE","FullyQualifiedName":"localhost/information_schema/VIEW_TABLE_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"VIEW_TABLE_USAGE","FullyQualifiedName":"localhost/information_schema/VIEW_TABLE_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"VIEW_TABLE_USAGE","FullyQualifiedName":"localhost/information_schema/VIEW_TABLE_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"VIEW_TABLE_USAGE","FullyQualifiedName":"localhost/information_schema/VIEW_TABLE_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"VIEW_TABLE_USAGE","FullyQualifiedName":"localhost/information_schema/VIEW_TABLE_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"VIEW_TABLE_USAGE","FullyQualifiedName":"localhost/information_schema/VIEW_TABLE_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"VIEW_TABLE_USAGE","FullyQualifiedName":"localhost/information_schema/VIEW_TABLE_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"VIEW_TABLE_USAGE","FullyQualifiedName":"localhost/information_schema/VIEW_TABLE_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"VIEW_TABLE_USAGE","FullyQualifiedName":"localhost/information_schema/VIEW_TABLE_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"VIEW_TABLE_USAGE","FullyQualifiedName":"localhost/information_schema/VIEW_TABLE_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"VIEW_TABLE_USAGE","FullyQualifiedName":"localhost/information_schema/VIEW_TABLE_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"VIEW_TABLE_USAGE","FullyQualifiedName":"localhost/information_schema/VIEW_TABLE_USAGE","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"information_schema","FullyQualifiedName":"localhost/information_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"accounts","FullyQualifiedName":"localhost/performance_schema/accounts","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"accounts","FullyQualifiedName":"localhost/performance_schema/accounts","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"accounts","FullyQualifiedName":"localhost/performance_schema/accounts","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"accounts","FullyQualifiedName":"localhost/performance_schema/accounts","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"accounts","FullyQualifiedName":"localhost/performance_schema/accounts","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"accounts","FullyQualifiedName":"localhost/performance_schema/accounts","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"accounts","FullyQualifiedName":"localhost/performance_schema/accounts","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"accounts","FullyQualifiedName":"localhost/performance_schema/accounts","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"accounts","FullyQualifiedName":"localhost/performance_schema/accounts","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"accounts","FullyQualifiedName":"localhost/performance_schema/accounts","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"accounts","FullyQualifiedName":"localhost/performance_schema/accounts","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"accounts","FullyQualifiedName":"localhost/performance_schema/accounts","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"binary_log_transaction_compression_stats","FullyQualifiedName":"localhost/performance_schema/binary_log_transaction_compression_stats","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"binary_log_transaction_compression_stats","FullyQualifiedName":"localhost/performance_schema/binary_log_transaction_compression_stats","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"binary_log_transaction_compression_stats","FullyQualifiedName":"localhost/performance_schema/binary_log_transaction_compression_stats","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"binary_log_transaction_compression_stats","FullyQualifiedName":"localhost/performance_schema/binary_log_transaction_compression_stats","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"binary_log_transaction_compression_stats","FullyQualifiedName":"localhost/performance_schema/binary_log_transaction_compression_stats","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"binary_log_transaction_compression_stats","FullyQualifiedName":"localhost/performance_schema/binary_log_transaction_compression_stats","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"binary_log_transaction_compression_stats","FullyQualifiedName":"localhost/performance_schema/binary_log_transaction_compression_stats","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"binary_log_transaction_compression_stats","FullyQualifiedName":"localhost/performance_schema/binary_log_transaction_compression_stats","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"binary_log_transaction_compression_stats","FullyQualifiedName":"localhost/performance_schema/binary_log_transaction_compression_stats","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"binary_log_transaction_compression_stats","FullyQualifiedName":"localhost/performance_schema/binary_log_transaction_compression_stats","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"binary_log_transaction_compression_stats","FullyQualifiedName":"localhost/performance_schema/binary_log_transaction_compression_stats","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"binary_log_transaction_compression_stats","FullyQualifiedName":"localhost/performance_schema/binary_log_transaction_compression_stats","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"columns_priv","FullyQualifiedName":"localhost/mysql/columns_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"columns_priv","FullyQualifiedName":"localhost/mysql/columns_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"columns_priv","FullyQualifiedName":"localhost/mysql/columns_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"columns_priv","FullyQualifiedName":"localhost/mysql/columns_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"columns_priv","FullyQualifiedName":"localhost/mysql/columns_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"columns_priv","FullyQualifiedName":"localhost/mysql/columns_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"columns_priv","FullyQualifiedName":"localhost/mysql/columns_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"columns_priv","FullyQualifiedName":"localhost/mysql/columns_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"columns_priv","FullyQualifiedName":"localhost/mysql/columns_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"columns_priv","FullyQualifiedName":"localhost/mysql/columns_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"columns_priv","FullyQualifiedName":"localhost/mysql/columns_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"columns_priv","FullyQualifiedName":"localhost/mysql/columns_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"component","FullyQualifiedName":"localhost/mysql/component","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"component","FullyQualifiedName":"localhost/mysql/component","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"component","FullyQualifiedName":"localhost/mysql/component","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"component","FullyQualifiedName":"localhost/mysql/component","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"component","FullyQualifiedName":"localhost/mysql/component","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"component","FullyQualifiedName":"localhost/mysql/component","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"component","FullyQualifiedName":"localhost/mysql/component","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"component","FullyQualifiedName":"localhost/mysql/component","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"component","FullyQualifiedName":"localhost/mysql/component","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"component","FullyQualifiedName":"localhost/mysql/component","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"component","FullyQualifiedName":"localhost/mysql/component","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"component","FullyQualifiedName":"localhost/mysql/component","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"cond_instances","FullyQualifiedName":"localhost/performance_schema/cond_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"cond_instances","FullyQualifiedName":"localhost/performance_schema/cond_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"cond_instances","FullyQualifiedName":"localhost/performance_schema/cond_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"cond_instances","FullyQualifiedName":"localhost/performance_schema/cond_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"cond_instances","FullyQualifiedName":"localhost/performance_schema/cond_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"cond_instances","FullyQualifiedName":"localhost/performance_schema/cond_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"cond_instances","FullyQualifiedName":"localhost/performance_schema/cond_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"cond_instances","FullyQualifiedName":"localhost/performance_schema/cond_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"cond_instances","FullyQualifiedName":"localhost/performance_schema/cond_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"cond_instances","FullyQualifiedName":"localhost/performance_schema/cond_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"cond_instances","FullyQualifiedName":"localhost/performance_schema/cond_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"cond_instances","FullyQualifiedName":"localhost/performance_schema/cond_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"create_synonym_db","FullyQualifiedName":"localhost/sys/create_synonym_db","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"create_synonym_db","FullyQualifiedName":"localhost/sys/create_synonym_db","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"data_lock_waits","FullyQualifiedName":"localhost/performance_schema/data_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"data_lock_waits","FullyQualifiedName":"localhost/performance_schema/data_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"data_lock_waits","FullyQualifiedName":"localhost/performance_schema/data_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"data_lock_waits","FullyQualifiedName":"localhost/performance_schema/data_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"data_lock_waits","FullyQualifiedName":"localhost/performance_schema/data_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"data_lock_waits","FullyQualifiedName":"localhost/performance_schema/data_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"data_lock_waits","FullyQualifiedName":"localhost/performance_schema/data_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"data_lock_waits","FullyQualifiedName":"localhost/performance_schema/data_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"data_lock_waits","FullyQualifiedName":"localhost/performance_schema/data_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"data_lock_waits","FullyQualifiedName":"localhost/performance_schema/data_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"data_lock_waits","FullyQualifiedName":"localhost/performance_schema/data_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"data_lock_waits","FullyQualifiedName":"localhost/performance_schema/data_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"data_locks","FullyQualifiedName":"localhost/performance_schema/data_locks","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"data_locks","FullyQualifiedName":"localhost/performance_schema/data_locks","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"data_locks","FullyQualifiedName":"localhost/performance_schema/data_locks","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"data_locks","FullyQualifiedName":"localhost/performance_schema/data_locks","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"data_locks","FullyQualifiedName":"localhost/performance_schema/data_locks","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"data_locks","FullyQualifiedName":"localhost/performance_schema/data_locks","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"data_locks","FullyQualifiedName":"localhost/performance_schema/data_locks","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"data_locks","FullyQualifiedName":"localhost/performance_schema/data_locks","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"data_locks","FullyQualifiedName":"localhost/performance_schema/data_locks","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"data_locks","FullyQualifiedName":"localhost/performance_schema/data_locks","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"data_locks","FullyQualifiedName":"localhost/performance_schema/data_locks","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"data_locks","FullyQualifiedName":"localhost/performance_schema/data_locks","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"db","FullyQualifiedName":"localhost/mysql/db","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"db","FullyQualifiedName":"localhost/mysql/db","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"db","FullyQualifiedName":"localhost/mysql/db","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"db","FullyQualifiedName":"localhost/mysql/db","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"db","FullyQualifiedName":"localhost/mysql/db","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"db","FullyQualifiedName":"localhost/mysql/db","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"db","FullyQualifiedName":"localhost/mysql/db","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"db","FullyQualifiedName":"localhost/mysql/db","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"db","FullyQualifiedName":"localhost/mysql/db","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"db","FullyQualifiedName":"localhost/mysql/db","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"db","FullyQualifiedName":"localhost/mysql/db","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"db","FullyQualifiedName":"localhost/mysql/db","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"default_roles","FullyQualifiedName":"localhost/mysql/default_roles","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"default_roles","FullyQualifiedName":"localhost/mysql/default_roles","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"default_roles","FullyQualifiedName":"localhost/mysql/default_roles","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"default_roles","FullyQualifiedName":"localhost/mysql/default_roles","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"default_roles","FullyQualifiedName":"localhost/mysql/default_roles","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"default_roles","FullyQualifiedName":"localhost/mysql/default_roles","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"default_roles","FullyQualifiedName":"localhost/mysql/default_roles","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"default_roles","FullyQualifiedName":"localhost/mysql/default_roles","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"default_roles","FullyQualifiedName":"localhost/mysql/default_roles","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"default_roles","FullyQualifiedName":"localhost/mysql/default_roles","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"default_roles","FullyQualifiedName":"localhost/mysql/default_roles","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"default_roles","FullyQualifiedName":"localhost/mysql/default_roles","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"diagnostics","FullyQualifiedName":"localhost/sys/diagnostics","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"diagnostics","FullyQualifiedName":"localhost/sys/diagnostics","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"engine_cost","FullyQualifiedName":"localhost/mysql/engine_cost","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"engine_cost","FullyQualifiedName":"localhost/mysql/engine_cost","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"engine_cost","FullyQualifiedName":"localhost/mysql/engine_cost","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"engine_cost","FullyQualifiedName":"localhost/mysql/engine_cost","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"engine_cost","FullyQualifiedName":"localhost/mysql/engine_cost","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"engine_cost","FullyQualifiedName":"localhost/mysql/engine_cost","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"engine_cost","FullyQualifiedName":"localhost/mysql/engine_cost","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"engine_cost","FullyQualifiedName":"localhost/mysql/engine_cost","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"engine_cost","FullyQualifiedName":"localhost/mysql/engine_cost","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"engine_cost","FullyQualifiedName":"localhost/mysql/engine_cost","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"engine_cost","FullyQualifiedName":"localhost/mysql/engine_cost","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"engine_cost","FullyQualifiedName":"localhost/mysql/engine_cost","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"error_log","FullyQualifiedName":"localhost/performance_schema/error_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"error_log","FullyQualifiedName":"localhost/performance_schema/error_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"error_log","FullyQualifiedName":"localhost/performance_schema/error_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"error_log","FullyQualifiedName":"localhost/performance_schema/error_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"error_log","FullyQualifiedName":"localhost/performance_schema/error_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"error_log","FullyQualifiedName":"localhost/performance_schema/error_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"error_log","FullyQualifiedName":"localhost/performance_schema/error_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"error_log","FullyQualifiedName":"localhost/performance_schema/error_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"error_log","FullyQualifiedName":"localhost/performance_schema/error_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"error_log","FullyQualifiedName":"localhost/performance_schema/error_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"error_log","FullyQualifiedName":"localhost/performance_schema/error_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"error_log","FullyQualifiedName":"localhost/performance_schema/error_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_account_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_account_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_account_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_account_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_account_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_account_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_account_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_account_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_account_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_account_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_account_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_account_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_account_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_account_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_account_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_account_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_account_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_account_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_account_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_account_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_account_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_account_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_account_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_account_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_host_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_host_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_host_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_host_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_host_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_host_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_host_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_host_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_host_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_host_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_host_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_host_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_host_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_host_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_host_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_host_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_host_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_host_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_host_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_host_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_host_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_host_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_host_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_host_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_thread_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_thread_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_thread_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_thread_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_thread_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_thread_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_thread_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_thread_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_thread_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_thread_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_thread_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_thread_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_thread_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_thread_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_thread_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_thread_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_thread_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_thread_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_thread_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_thread_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_thread_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_thread_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_thread_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_thread_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_user_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_user_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_user_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_user_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_user_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_user_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_user_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_user_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_user_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_user_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_user_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_user_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_user_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_user_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_user_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_user_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_user_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_user_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_user_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_user_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_user_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_user_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_errors_summary_by_user_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_by_user_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_errors_summary_global_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_global_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_errors_summary_global_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_global_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_errors_summary_global_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_global_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_errors_summary_global_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_global_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_errors_summary_global_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_global_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_errors_summary_global_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_global_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_errors_summary_global_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_global_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_errors_summary_global_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_global_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_errors_summary_global_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_global_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_errors_summary_global_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_global_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_errors_summary_global_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_global_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_errors_summary_global_by_error","FullyQualifiedName":"localhost/performance_schema/events_errors_summary_global_by_error","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_stages_current","FullyQualifiedName":"localhost/performance_schema/events_stages_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_stages_current","FullyQualifiedName":"localhost/performance_schema/events_stages_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_stages_current","FullyQualifiedName":"localhost/performance_schema/events_stages_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_stages_current","FullyQualifiedName":"localhost/performance_schema/events_stages_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_stages_current","FullyQualifiedName":"localhost/performance_schema/events_stages_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_stages_current","FullyQualifiedName":"localhost/performance_schema/events_stages_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_stages_current","FullyQualifiedName":"localhost/performance_schema/events_stages_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_stages_current","FullyQualifiedName":"localhost/performance_schema/events_stages_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_stages_current","FullyQualifiedName":"localhost/performance_schema/events_stages_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_stages_current","FullyQualifiedName":"localhost/performance_schema/events_stages_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_stages_current","FullyQualifiedName":"localhost/performance_schema/events_stages_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_stages_current","FullyQualifiedName":"localhost/performance_schema/events_stages_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_stages_history","FullyQualifiedName":"localhost/performance_schema/events_stages_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_stages_history","FullyQualifiedName":"localhost/performance_schema/events_stages_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_stages_history","FullyQualifiedName":"localhost/performance_schema/events_stages_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_stages_history","FullyQualifiedName":"localhost/performance_schema/events_stages_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_stages_history","FullyQualifiedName":"localhost/performance_schema/events_stages_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_stages_history","FullyQualifiedName":"localhost/performance_schema/events_stages_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_stages_history","FullyQualifiedName":"localhost/performance_schema/events_stages_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_stages_history","FullyQualifiedName":"localhost/performance_schema/events_stages_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_stages_history","FullyQualifiedName":"localhost/performance_schema/events_stages_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_stages_history","FullyQualifiedName":"localhost/performance_schema/events_stages_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_stages_history","FullyQualifiedName":"localhost/performance_schema/events_stages_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_stages_history","FullyQualifiedName":"localhost/performance_schema/events_stages_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_stages_history_long","FullyQualifiedName":"localhost/performance_schema/events_stages_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_stages_history_long","FullyQualifiedName":"localhost/performance_schema/events_stages_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_stages_history_long","FullyQualifiedName":"localhost/performance_schema/events_stages_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_stages_history_long","FullyQualifiedName":"localhost/performance_schema/events_stages_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_stages_history_long","FullyQualifiedName":"localhost/performance_schema/events_stages_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_stages_history_long","FullyQualifiedName":"localhost/performance_schema/events_stages_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_stages_history_long","FullyQualifiedName":"localhost/performance_schema/events_stages_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_stages_history_long","FullyQualifiedName":"localhost/performance_schema/events_stages_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_stages_history_long","FullyQualifiedName":"localhost/performance_schema/events_stages_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_stages_history_long","FullyQualifiedName":"localhost/performance_schema/events_stages_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_stages_history_long","FullyQualifiedName":"localhost/performance_schema/events_stages_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_stages_history_long","FullyQualifiedName":"localhost/performance_schema/events_stages_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_stages_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_stages_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_stages_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_stages_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_stages_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_stages_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_stages_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_stages_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_stages_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_stages_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_stages_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_stages_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_stages_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_stages_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_statements_current","FullyQualifiedName":"localhost/performance_schema/events_statements_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_statements_current","FullyQualifiedName":"localhost/performance_schema/events_statements_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_statements_current","FullyQualifiedName":"localhost/performance_schema/events_statements_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_statements_current","FullyQualifiedName":"localhost/performance_schema/events_statements_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_statements_current","FullyQualifiedName":"localhost/performance_schema/events_statements_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_statements_current","FullyQualifiedName":"localhost/performance_schema/events_statements_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_statements_current","FullyQualifiedName":"localhost/performance_schema/events_statements_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_statements_current","FullyQualifiedName":"localhost/performance_schema/events_statements_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_statements_current","FullyQualifiedName":"localhost/performance_schema/events_statements_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_statements_current","FullyQualifiedName":"localhost/performance_schema/events_statements_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_statements_current","FullyQualifiedName":"localhost/performance_schema/events_statements_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_statements_current","FullyQualifiedName":"localhost/performance_schema/events_statements_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_statements_histogram_by_digest","FullyQualifiedName":"localhost/performance_schema/events_statements_histogram_by_digest","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_statements_histogram_by_digest","FullyQualifiedName":"localhost/performance_schema/events_statements_histogram_by_digest","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_statements_histogram_by_digest","FullyQualifiedName":"localhost/performance_schema/events_statements_histogram_by_digest","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_statements_histogram_by_digest","FullyQualifiedName":"localhost/performance_schema/events_statements_histogram_by_digest","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_statements_histogram_by_digest","FullyQualifiedName":"localhost/performance_schema/events_statements_histogram_by_digest","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_statements_histogram_by_digest","FullyQualifiedName":"localhost/performance_schema/events_statements_histogram_by_digest","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_statements_histogram_by_digest","FullyQualifiedName":"localhost/performance_schema/events_statements_histogram_by_digest","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_statements_histogram_by_digest","FullyQualifiedName":"localhost/performance_schema/events_statements_histogram_by_digest","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_statements_histogram_by_digest","FullyQualifiedName":"localhost/performance_schema/events_statements_histogram_by_digest","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_statements_histogram_by_digest","FullyQualifiedName":"localhost/performance_schema/events_statements_histogram_by_digest","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_statements_histogram_by_digest","FullyQualifiedName":"localhost/performance_schema/events_statements_histogram_by_digest","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_statements_histogram_by_digest","FullyQualifiedName":"localhost/performance_schema/events_statements_histogram_by_digest","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_statements_histogram_global","FullyQualifiedName":"localhost/performance_schema/events_statements_histogram_global","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_statements_histogram_global","FullyQualifiedName":"localhost/performance_schema/events_statements_histogram_global","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_statements_histogram_global","FullyQualifiedName":"localhost/performance_schema/events_statements_histogram_global","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_statements_histogram_global","FullyQualifiedName":"localhost/performance_schema/events_statements_histogram_global","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_statements_histogram_global","FullyQualifiedName":"localhost/performance_schema/events_statements_histogram_global","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_statements_histogram_global","FullyQualifiedName":"localhost/performance_schema/events_statements_histogram_global","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_statements_histogram_global","FullyQualifiedName":"localhost/performance_schema/events_statements_histogram_global","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_statements_histogram_global","FullyQualifiedName":"localhost/performance_schema/events_statements_histogram_global","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_statements_histogram_global","FullyQualifiedName":"localhost/performance_schema/events_statements_histogram_global","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_statements_histogram_global","FullyQualifiedName":"localhost/performance_schema/events_statements_histogram_global","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_statements_histogram_global","FullyQualifiedName":"localhost/performance_schema/events_statements_histogram_global","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_statements_histogram_global","FullyQualifiedName":"localhost/performance_schema/events_statements_histogram_global","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_statements_history","FullyQualifiedName":"localhost/performance_schema/events_statements_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_statements_history","FullyQualifiedName":"localhost/performance_schema/events_statements_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_statements_history","FullyQualifiedName":"localhost/performance_schema/events_statements_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_statements_history","FullyQualifiedName":"localhost/performance_schema/events_statements_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_statements_history","FullyQualifiedName":"localhost/performance_schema/events_statements_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_statements_history","FullyQualifiedName":"localhost/performance_schema/events_statements_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_statements_history","FullyQualifiedName":"localhost/performance_schema/events_statements_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_statements_history","FullyQualifiedName":"localhost/performance_schema/events_statements_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_statements_history","FullyQualifiedName":"localhost/performance_schema/events_statements_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_statements_history","FullyQualifiedName":"localhost/performance_schema/events_statements_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_statements_history","FullyQualifiedName":"localhost/performance_schema/events_statements_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_statements_history","FullyQualifiedName":"localhost/performance_schema/events_statements_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_statements_history_long","FullyQualifiedName":"localhost/performance_schema/events_statements_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_statements_history_long","FullyQualifiedName":"localhost/performance_schema/events_statements_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_statements_history_long","FullyQualifiedName":"localhost/performance_schema/events_statements_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_statements_history_long","FullyQualifiedName":"localhost/performance_schema/events_statements_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_statements_history_long","FullyQualifiedName":"localhost/performance_schema/events_statements_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_statements_history_long","FullyQualifiedName":"localhost/performance_schema/events_statements_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_statements_history_long","FullyQualifiedName":"localhost/performance_schema/events_statements_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_statements_history_long","FullyQualifiedName":"localhost/performance_schema/events_statements_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_statements_history_long","FullyQualifiedName":"localhost/performance_schema/events_statements_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_statements_history_long","FullyQualifiedName":"localhost/performance_schema/events_statements_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_statements_history_long","FullyQualifiedName":"localhost/performance_schema/events_statements_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_statements_history_long","FullyQualifiedName":"localhost/performance_schema/events_statements_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_digest","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_digest","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_digest","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_digest","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_digest","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_digest","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_digest","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_digest","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_digest","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_digest","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_digest","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_digest","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_digest","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_digest","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_digest","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_digest","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_digest","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_digest","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_digest","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_digest","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_digest","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_digest","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_digest","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_digest","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_program","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_program","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_program","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_program","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_program","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_program","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_program","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_program","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_program","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_program","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_program","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_program","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_program","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_program","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_program","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_program","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_program","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_program","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_program","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_program","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_program","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_program","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_program","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_program","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_statements_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_statements_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_statements_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_statements_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_statements_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_statements_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_statements_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_statements_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_statements_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_statements_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_statements_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_statements_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_statements_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_statements_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_transactions_current","FullyQualifiedName":"localhost/performance_schema/events_transactions_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_transactions_current","FullyQualifiedName":"localhost/performance_schema/events_transactions_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_transactions_current","FullyQualifiedName":"localhost/performance_schema/events_transactions_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_transactions_current","FullyQualifiedName":"localhost/performance_schema/events_transactions_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_transactions_current","FullyQualifiedName":"localhost/performance_schema/events_transactions_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_transactions_current","FullyQualifiedName":"localhost/performance_schema/events_transactions_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_transactions_current","FullyQualifiedName":"localhost/performance_schema/events_transactions_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_transactions_current","FullyQualifiedName":"localhost/performance_schema/events_transactions_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_transactions_current","FullyQualifiedName":"localhost/performance_schema/events_transactions_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_transactions_current","FullyQualifiedName":"localhost/performance_schema/events_transactions_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_transactions_current","FullyQualifiedName":"localhost/performance_schema/events_transactions_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_transactions_current","FullyQualifiedName":"localhost/performance_schema/events_transactions_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_transactions_history","FullyQualifiedName":"localhost/performance_schema/events_transactions_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_transactions_history","FullyQualifiedName":"localhost/performance_schema/events_transactions_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_transactions_history","FullyQualifiedName":"localhost/performance_schema/events_transactions_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_transactions_history","FullyQualifiedName":"localhost/performance_schema/events_transactions_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_transactions_history","FullyQualifiedName":"localhost/performance_schema/events_transactions_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_transactions_history","FullyQualifiedName":"localhost/performance_schema/events_transactions_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_transactions_history","FullyQualifiedName":"localhost/performance_schema/events_transactions_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_transactions_history","FullyQualifiedName":"localhost/performance_schema/events_transactions_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_transactions_history","FullyQualifiedName":"localhost/performance_schema/events_transactions_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_transactions_history","FullyQualifiedName":"localhost/performance_schema/events_transactions_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_transactions_history","FullyQualifiedName":"localhost/performance_schema/events_transactions_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_transactions_history","FullyQualifiedName":"localhost/performance_schema/events_transactions_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_transactions_history_long","FullyQualifiedName":"localhost/performance_schema/events_transactions_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_transactions_history_long","FullyQualifiedName":"localhost/performance_schema/events_transactions_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_transactions_history_long","FullyQualifiedName":"localhost/performance_schema/events_transactions_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_transactions_history_long","FullyQualifiedName":"localhost/performance_schema/events_transactions_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_transactions_history_long","FullyQualifiedName":"localhost/performance_schema/events_transactions_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_transactions_history_long","FullyQualifiedName":"localhost/performance_schema/events_transactions_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_transactions_history_long","FullyQualifiedName":"localhost/performance_schema/events_transactions_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_transactions_history_long","FullyQualifiedName":"localhost/performance_schema/events_transactions_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_transactions_history_long","FullyQualifiedName":"localhost/performance_schema/events_transactions_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_transactions_history_long","FullyQualifiedName":"localhost/performance_schema/events_transactions_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_transactions_history_long","FullyQualifiedName":"localhost/performance_schema/events_transactions_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_transactions_history_long","FullyQualifiedName":"localhost/performance_schema/events_transactions_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_transactions_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_transactions_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_transactions_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_transactions_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_transactions_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_transactions_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_transactions_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_transactions_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_transactions_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_transactions_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_transactions_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_transactions_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_transactions_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_transactions_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_waits_current","FullyQualifiedName":"localhost/performance_schema/events_waits_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_waits_current","FullyQualifiedName":"localhost/performance_schema/events_waits_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_waits_current","FullyQualifiedName":"localhost/performance_schema/events_waits_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_waits_current","FullyQualifiedName":"localhost/performance_schema/events_waits_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_waits_current","FullyQualifiedName":"localhost/performance_schema/events_waits_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_waits_current","FullyQualifiedName":"localhost/performance_schema/events_waits_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_waits_current","FullyQualifiedName":"localhost/performance_schema/events_waits_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_waits_current","FullyQualifiedName":"localhost/performance_schema/events_waits_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_waits_current","FullyQualifiedName":"localhost/performance_schema/events_waits_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_waits_current","FullyQualifiedName":"localhost/performance_schema/events_waits_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_waits_current","FullyQualifiedName":"localhost/performance_schema/events_waits_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_waits_current","FullyQualifiedName":"localhost/performance_schema/events_waits_current","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_waits_history","FullyQualifiedName":"localhost/performance_schema/events_waits_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_waits_history","FullyQualifiedName":"localhost/performance_schema/events_waits_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_waits_history","FullyQualifiedName":"localhost/performance_schema/events_waits_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_waits_history","FullyQualifiedName":"localhost/performance_schema/events_waits_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_waits_history","FullyQualifiedName":"localhost/performance_schema/events_waits_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_waits_history","FullyQualifiedName":"localhost/performance_schema/events_waits_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_waits_history","FullyQualifiedName":"localhost/performance_schema/events_waits_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_waits_history","FullyQualifiedName":"localhost/performance_schema/events_waits_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_waits_history","FullyQualifiedName":"localhost/performance_schema/events_waits_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_waits_history","FullyQualifiedName":"localhost/performance_schema/events_waits_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_waits_history","FullyQualifiedName":"localhost/performance_schema/events_waits_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_waits_history","FullyQualifiedName":"localhost/performance_schema/events_waits_history","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_waits_history_long","FullyQualifiedName":"localhost/performance_schema/events_waits_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_waits_history_long","FullyQualifiedName":"localhost/performance_schema/events_waits_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_waits_history_long","FullyQualifiedName":"localhost/performance_schema/events_waits_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_waits_history_long","FullyQualifiedName":"localhost/performance_schema/events_waits_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_waits_history_long","FullyQualifiedName":"localhost/performance_schema/events_waits_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_waits_history_long","FullyQualifiedName":"localhost/performance_schema/events_waits_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_waits_history_long","FullyQualifiedName":"localhost/performance_schema/events_waits_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_waits_history_long","FullyQualifiedName":"localhost/performance_schema/events_waits_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_waits_history_long","FullyQualifiedName":"localhost/performance_schema/events_waits_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_waits_history_long","FullyQualifiedName":"localhost/performance_schema/events_waits_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_waits_history_long","FullyQualifiedName":"localhost/performance_schema/events_waits_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_waits_history_long","FullyQualifiedName":"localhost/performance_schema/events_waits_history_long","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_waits_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"events_waits_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"events_waits_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"events_waits_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"events_waits_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"events_waits_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"events_waits_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"events_waits_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"events_waits_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"events_waits_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"events_waits_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"events_waits_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"events_waits_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/events_waits_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"execute_prepared_stmt","FullyQualifiedName":"localhost/sys/execute_prepared_stmt","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"execute_prepared_stmt","FullyQualifiedName":"localhost/sys/execute_prepared_stmt","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"extract_schema_from_file_name","FullyQualifiedName":"localhost/sys/extract_schema_from_file_name","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"extract_schema_from_file_name","FullyQualifiedName":"localhost/sys/extract_schema_from_file_name","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"extract_table_from_file_name","FullyQualifiedName":"localhost/sys/extract_table_from_file_name","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"extract_table_from_file_name","FullyQualifiedName":"localhost/sys/extract_table_from_file_name","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"file_instances","FullyQualifiedName":"localhost/performance_schema/file_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"file_instances","FullyQualifiedName":"localhost/performance_schema/file_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"file_instances","FullyQualifiedName":"localhost/performance_schema/file_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"file_instances","FullyQualifiedName":"localhost/performance_schema/file_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"file_instances","FullyQualifiedName":"localhost/performance_schema/file_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"file_instances","FullyQualifiedName":"localhost/performance_schema/file_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"file_instances","FullyQualifiedName":"localhost/performance_schema/file_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"file_instances","FullyQualifiedName":"localhost/performance_schema/file_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"file_instances","FullyQualifiedName":"localhost/performance_schema/file_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"file_instances","FullyQualifiedName":"localhost/performance_schema/file_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"file_instances","FullyQualifiedName":"localhost/performance_schema/file_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"file_instances","FullyQualifiedName":"localhost/performance_schema/file_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"file_summary_by_event_name","FullyQualifiedName":"localhost/performance_schema/file_summary_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"file_summary_by_event_name","FullyQualifiedName":"localhost/performance_schema/file_summary_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"file_summary_by_event_name","FullyQualifiedName":"localhost/performance_schema/file_summary_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"file_summary_by_event_name","FullyQualifiedName":"localhost/performance_schema/file_summary_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"file_summary_by_event_name","FullyQualifiedName":"localhost/performance_schema/file_summary_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"file_summary_by_event_name","FullyQualifiedName":"localhost/performance_schema/file_summary_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"file_summary_by_event_name","FullyQualifiedName":"localhost/performance_schema/file_summary_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"file_summary_by_event_name","FullyQualifiedName":"localhost/performance_schema/file_summary_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"file_summary_by_event_name","FullyQualifiedName":"localhost/performance_schema/file_summary_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"file_summary_by_event_name","FullyQualifiedName":"localhost/performance_schema/file_summary_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"file_summary_by_event_name","FullyQualifiedName":"localhost/performance_schema/file_summary_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"file_summary_by_event_name","FullyQualifiedName":"localhost/performance_schema/file_summary_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"file_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/file_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"file_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/file_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"file_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/file_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"file_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/file_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"file_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/file_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"file_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/file_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"file_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/file_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"file_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/file_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"file_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/file_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"file_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/file_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"file_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/file_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"file_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/file_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"format_bytes","FullyQualifiedName":"localhost/sys/format_bytes","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"format_bytes","FullyQualifiedName":"localhost/sys/format_bytes","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"format_path","FullyQualifiedName":"localhost/sys/format_path","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"format_path","FullyQualifiedName":"localhost/sys/format_path","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"format_statement","FullyQualifiedName":"localhost/sys/format_statement","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"format_statement","FullyQualifiedName":"localhost/sys/format_statement","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"format_time","FullyQualifiedName":"localhost/sys/format_time","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"format_time","FullyQualifiedName":"localhost/sys/format_time","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"func","FullyQualifiedName":"localhost/mysql/func","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"func","FullyQualifiedName":"localhost/mysql/func","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"func","FullyQualifiedName":"localhost/mysql/func","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"func","FullyQualifiedName":"localhost/mysql/func","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"func","FullyQualifiedName":"localhost/mysql/func","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"func","FullyQualifiedName":"localhost/mysql/func","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"func","FullyQualifiedName":"localhost/mysql/func","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"func","FullyQualifiedName":"localhost/mysql/func","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"func","FullyQualifiedName":"localhost/mysql/func","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"func","FullyQualifiedName":"localhost/mysql/func","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"func","FullyQualifiedName":"localhost/mysql/func","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"func","FullyQualifiedName":"localhost/mysql/func","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"general_log","FullyQualifiedName":"localhost/mysql/general_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"general_log","FullyQualifiedName":"localhost/mysql/general_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"general_log","FullyQualifiedName":"localhost/mysql/general_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"general_log","FullyQualifiedName":"localhost/mysql/general_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"general_log","FullyQualifiedName":"localhost/mysql/general_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"general_log","FullyQualifiedName":"localhost/mysql/general_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"general_log","FullyQualifiedName":"localhost/mysql/general_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"general_log","FullyQualifiedName":"localhost/mysql/general_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"general_log","FullyQualifiedName":"localhost/mysql/general_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"general_log","FullyQualifiedName":"localhost/mysql/general_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"general_log","FullyQualifiedName":"localhost/mysql/general_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"general_log","FullyQualifiedName":"localhost/mysql/general_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"global_grants","FullyQualifiedName":"localhost/mysql/global_grants","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"global_grants","FullyQualifiedName":"localhost/mysql/global_grants","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"global_grants","FullyQualifiedName":"localhost/mysql/global_grants","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"global_grants","FullyQualifiedName":"localhost/mysql/global_grants","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"global_grants","FullyQualifiedName":"localhost/mysql/global_grants","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"global_grants","FullyQualifiedName":"localhost/mysql/global_grants","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"global_grants","FullyQualifiedName":"localhost/mysql/global_grants","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"global_grants","FullyQualifiedName":"localhost/mysql/global_grants","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"global_grants","FullyQualifiedName":"localhost/mysql/global_grants","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"global_grants","FullyQualifiedName":"localhost/mysql/global_grants","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"global_grants","FullyQualifiedName":"localhost/mysql/global_grants","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"global_grants","FullyQualifiedName":"localhost/mysql/global_grants","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"global_status","FullyQualifiedName":"localhost/performance_schema/global_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"global_status","FullyQualifiedName":"localhost/performance_schema/global_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"global_status","FullyQualifiedName":"localhost/performance_schema/global_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"global_status","FullyQualifiedName":"localhost/performance_schema/global_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"global_status","FullyQualifiedName":"localhost/performance_schema/global_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"global_status","FullyQualifiedName":"localhost/performance_schema/global_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"global_status","FullyQualifiedName":"localhost/performance_schema/global_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"global_status","FullyQualifiedName":"localhost/performance_schema/global_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"global_status","FullyQualifiedName":"localhost/performance_schema/global_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"global_status","FullyQualifiedName":"localhost/performance_schema/global_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"global_status","FullyQualifiedName":"localhost/performance_schema/global_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"global_status","FullyQualifiedName":"localhost/performance_schema/global_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"global_variable_attributes","FullyQualifiedName":"localhost/performance_schema/global_variable_attributes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"global_variable_attributes","FullyQualifiedName":"localhost/performance_schema/global_variable_attributes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"global_variable_attributes","FullyQualifiedName":"localhost/performance_schema/global_variable_attributes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"global_variable_attributes","FullyQualifiedName":"localhost/performance_schema/global_variable_attributes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"global_variable_attributes","FullyQualifiedName":"localhost/performance_schema/global_variable_attributes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"global_variable_attributes","FullyQualifiedName":"localhost/performance_schema/global_variable_attributes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"global_variable_attributes","FullyQualifiedName":"localhost/performance_schema/global_variable_attributes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"global_variable_attributes","FullyQualifiedName":"localhost/performance_schema/global_variable_attributes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"global_variable_attributes","FullyQualifiedName":"localhost/performance_schema/global_variable_attributes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"global_variable_attributes","FullyQualifiedName":"localhost/performance_schema/global_variable_attributes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"global_variable_attributes","FullyQualifiedName":"localhost/performance_schema/global_variable_attributes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"global_variable_attributes","FullyQualifiedName":"localhost/performance_schema/global_variable_attributes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"global_variables","FullyQualifiedName":"localhost/performance_schema/global_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"global_variables","FullyQualifiedName":"localhost/performance_schema/global_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"global_variables","FullyQualifiedName":"localhost/performance_schema/global_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"global_variables","FullyQualifiedName":"localhost/performance_schema/global_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"global_variables","FullyQualifiedName":"localhost/performance_schema/global_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"global_variables","FullyQualifiedName":"localhost/performance_schema/global_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"global_variables","FullyQualifiedName":"localhost/performance_schema/global_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"global_variables","FullyQualifiedName":"localhost/performance_schema/global_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"global_variables","FullyQualifiedName":"localhost/performance_schema/global_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"global_variables","FullyQualifiedName":"localhost/performance_schema/global_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"global_variables","FullyQualifiedName":"localhost/performance_schema/global_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"global_variables","FullyQualifiedName":"localhost/performance_schema/global_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"gtid_executed","FullyQualifiedName":"localhost/mysql/gtid_executed","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"gtid_executed","FullyQualifiedName":"localhost/mysql/gtid_executed","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"gtid_executed","FullyQualifiedName":"localhost/mysql/gtid_executed","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"gtid_executed","FullyQualifiedName":"localhost/mysql/gtid_executed","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"gtid_executed","FullyQualifiedName":"localhost/mysql/gtid_executed","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"gtid_executed","FullyQualifiedName":"localhost/mysql/gtid_executed","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"gtid_executed","FullyQualifiedName":"localhost/mysql/gtid_executed","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"gtid_executed","FullyQualifiedName":"localhost/mysql/gtid_executed","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"gtid_executed","FullyQualifiedName":"localhost/mysql/gtid_executed","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"gtid_executed","FullyQualifiedName":"localhost/mysql/gtid_executed","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"gtid_executed","FullyQualifiedName":"localhost/mysql/gtid_executed","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"gtid_executed","FullyQualifiedName":"localhost/mysql/gtid_executed","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"help_category","FullyQualifiedName":"localhost/mysql/help_category","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"help_category","FullyQualifiedName":"localhost/mysql/help_category","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"help_category","FullyQualifiedName":"localhost/mysql/help_category","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"help_category","FullyQualifiedName":"localhost/mysql/help_category","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"help_category","FullyQualifiedName":"localhost/mysql/help_category","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"help_category","FullyQualifiedName":"localhost/mysql/help_category","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"help_category","FullyQualifiedName":"localhost/mysql/help_category","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"help_category","FullyQualifiedName":"localhost/mysql/help_category","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"help_category","FullyQualifiedName":"localhost/mysql/help_category","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"help_category","FullyQualifiedName":"localhost/mysql/help_category","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"help_category","FullyQualifiedName":"localhost/mysql/help_category","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"help_category","FullyQualifiedName":"localhost/mysql/help_category","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"help_keyword","FullyQualifiedName":"localhost/mysql/help_keyword","Type":"table","Metadata":{"bytes":131072,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"help_keyword","FullyQualifiedName":"localhost/mysql/help_keyword","Type":"table","Metadata":{"bytes":131072,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"help_keyword","FullyQualifiedName":"localhost/mysql/help_keyword","Type":"table","Metadata":{"bytes":131072,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"help_keyword","FullyQualifiedName":"localhost/mysql/help_keyword","Type":"table","Metadata":{"bytes":131072,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"help_keyword","FullyQualifiedName":"localhost/mysql/help_keyword","Type":"table","Metadata":{"bytes":131072,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"help_keyword","FullyQualifiedName":"localhost/mysql/help_keyword","Type":"table","Metadata":{"bytes":131072,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"help_keyword","FullyQualifiedName":"localhost/mysql/help_keyword","Type":"table","Metadata":{"bytes":131072,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"help_keyword","FullyQualifiedName":"localhost/mysql/help_keyword","Type":"table","Metadata":{"bytes":131072,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"help_keyword","FullyQualifiedName":"localhost/mysql/help_keyword","Type":"table","Metadata":{"bytes":131072,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"help_keyword","FullyQualifiedName":"localhost/mysql/help_keyword","Type":"table","Metadata":{"bytes":131072,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"help_keyword","FullyQualifiedName":"localhost/mysql/help_keyword","Type":"table","Metadata":{"bytes":131072,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"help_keyword","FullyQualifiedName":"localhost/mysql/help_keyword","Type":"table","Metadata":{"bytes":131072,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"help_relation","FullyQualifiedName":"localhost/mysql/help_relation","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"help_relation","FullyQualifiedName":"localhost/mysql/help_relation","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"help_relation","FullyQualifiedName":"localhost/mysql/help_relation","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"help_relation","FullyQualifiedName":"localhost/mysql/help_relation","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"help_relation","FullyQualifiedName":"localhost/mysql/help_relation","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"help_relation","FullyQualifiedName":"localhost/mysql/help_relation","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"help_relation","FullyQualifiedName":"localhost/mysql/help_relation","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"help_relation","FullyQualifiedName":"localhost/mysql/help_relation","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"help_relation","FullyQualifiedName":"localhost/mysql/help_relation","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"help_relation","FullyQualifiedName":"localhost/mysql/help_relation","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"help_relation","FullyQualifiedName":"localhost/mysql/help_relation","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"help_relation","FullyQualifiedName":"localhost/mysql/help_relation","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"help_topic","FullyQualifiedName":"localhost/mysql/help_topic","Type":"table","Metadata":{"bytes":1589248,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"help_topic","FullyQualifiedName":"localhost/mysql/help_topic","Type":"table","Metadata":{"bytes":1589248,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"help_topic","FullyQualifiedName":"localhost/mysql/help_topic","Type":"table","Metadata":{"bytes":1589248,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"help_topic","FullyQualifiedName":"localhost/mysql/help_topic","Type":"table","Metadata":{"bytes":1589248,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"help_topic","FullyQualifiedName":"localhost/mysql/help_topic","Type":"table","Metadata":{"bytes":1589248,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"help_topic","FullyQualifiedName":"localhost/mysql/help_topic","Type":"table","Metadata":{"bytes":1589248,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"help_topic","FullyQualifiedName":"localhost/mysql/help_topic","Type":"table","Metadata":{"bytes":1589248,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"help_topic","FullyQualifiedName":"localhost/mysql/help_topic","Type":"table","Metadata":{"bytes":1589248,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"help_topic","FullyQualifiedName":"localhost/mysql/help_topic","Type":"table","Metadata":{"bytes":1589248,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"help_topic","FullyQualifiedName":"localhost/mysql/help_topic","Type":"table","Metadata":{"bytes":1589248,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"help_topic","FullyQualifiedName":"localhost/mysql/help_topic","Type":"table","Metadata":{"bytes":1589248,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"help_topic","FullyQualifiedName":"localhost/mysql/help_topic","Type":"table","Metadata":{"bytes":1589248,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"host_cache","FullyQualifiedName":"localhost/performance_schema/host_cache","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"host_cache","FullyQualifiedName":"localhost/performance_schema/host_cache","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"host_cache","FullyQualifiedName":"localhost/performance_schema/host_cache","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"host_cache","FullyQualifiedName":"localhost/performance_schema/host_cache","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"host_cache","FullyQualifiedName":"localhost/performance_schema/host_cache","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"host_cache","FullyQualifiedName":"localhost/performance_schema/host_cache","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"host_cache","FullyQualifiedName":"localhost/performance_schema/host_cache","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"host_cache","FullyQualifiedName":"localhost/performance_schema/host_cache","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"host_cache","FullyQualifiedName":"localhost/performance_schema/host_cache","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"host_cache","FullyQualifiedName":"localhost/performance_schema/host_cache","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"host_cache","FullyQualifiedName":"localhost/performance_schema/host_cache","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"host_cache","FullyQualifiedName":"localhost/performance_schema/host_cache","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"host_summary","FullyQualifiedName":"localhost/sys/host_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"host_summary","FullyQualifiedName":"localhost/sys/host_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"host_summary","FullyQualifiedName":"localhost/sys/host_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"host_summary","FullyQualifiedName":"localhost/sys/host_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"host_summary","FullyQualifiedName":"localhost/sys/host_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"host_summary","FullyQualifiedName":"localhost/sys/host_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"host_summary","FullyQualifiedName":"localhost/sys/host_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"host_summary","FullyQualifiedName":"localhost/sys/host_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"host_summary","FullyQualifiedName":"localhost/sys/host_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"host_summary","FullyQualifiedName":"localhost/sys/host_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"host_summary","FullyQualifiedName":"localhost/sys/host_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"host_summary","FullyQualifiedName":"localhost/sys/host_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"host_summary_by_file_io","FullyQualifiedName":"localhost/sys/host_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"host_summary_by_file_io","FullyQualifiedName":"localhost/sys/host_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"host_summary_by_file_io","FullyQualifiedName":"localhost/sys/host_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"host_summary_by_file_io","FullyQualifiedName":"localhost/sys/host_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"host_summary_by_file_io","FullyQualifiedName":"localhost/sys/host_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"host_summary_by_file_io","FullyQualifiedName":"localhost/sys/host_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"host_summary_by_file_io","FullyQualifiedName":"localhost/sys/host_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"host_summary_by_file_io","FullyQualifiedName":"localhost/sys/host_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"host_summary_by_file_io","FullyQualifiedName":"localhost/sys/host_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"host_summary_by_file_io","FullyQualifiedName":"localhost/sys/host_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"host_summary_by_file_io","FullyQualifiedName":"localhost/sys/host_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"host_summary_by_file_io","FullyQualifiedName":"localhost/sys/host_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"host_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/host_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"host_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/host_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"host_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/host_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"host_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/host_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"host_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/host_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"host_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/host_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"host_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/host_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"host_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/host_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"host_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/host_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"host_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/host_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"host_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/host_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"host_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/host_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"host_summary_by_stages","FullyQualifiedName":"localhost/sys/host_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"host_summary_by_stages","FullyQualifiedName":"localhost/sys/host_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"host_summary_by_stages","FullyQualifiedName":"localhost/sys/host_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"host_summary_by_stages","FullyQualifiedName":"localhost/sys/host_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"host_summary_by_stages","FullyQualifiedName":"localhost/sys/host_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"host_summary_by_stages","FullyQualifiedName":"localhost/sys/host_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"host_summary_by_stages","FullyQualifiedName":"localhost/sys/host_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"host_summary_by_stages","FullyQualifiedName":"localhost/sys/host_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"host_summary_by_stages","FullyQualifiedName":"localhost/sys/host_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"host_summary_by_stages","FullyQualifiedName":"localhost/sys/host_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"host_summary_by_stages","FullyQualifiedName":"localhost/sys/host_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"host_summary_by_stages","FullyQualifiedName":"localhost/sys/host_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"host_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/host_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"host_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/host_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"host_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/host_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"host_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/host_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"host_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/host_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"host_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/host_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"host_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/host_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"host_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/host_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"host_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/host_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"host_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/host_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"host_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/host_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"host_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/host_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"host_summary_by_statement_type","FullyQualifiedName":"localhost/sys/host_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"host_summary_by_statement_type","FullyQualifiedName":"localhost/sys/host_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"host_summary_by_statement_type","FullyQualifiedName":"localhost/sys/host_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"host_summary_by_statement_type","FullyQualifiedName":"localhost/sys/host_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"host_summary_by_statement_type","FullyQualifiedName":"localhost/sys/host_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"host_summary_by_statement_type","FullyQualifiedName":"localhost/sys/host_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"host_summary_by_statement_type","FullyQualifiedName":"localhost/sys/host_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"host_summary_by_statement_type","FullyQualifiedName":"localhost/sys/host_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"host_summary_by_statement_type","FullyQualifiedName":"localhost/sys/host_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"host_summary_by_statement_type","FullyQualifiedName":"localhost/sys/host_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"host_summary_by_statement_type","FullyQualifiedName":"localhost/sys/host_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"host_summary_by_statement_type","FullyQualifiedName":"localhost/sys/host_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"hosts","FullyQualifiedName":"localhost/performance_schema/hosts","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"hosts","FullyQualifiedName":"localhost/performance_schema/hosts","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"hosts","FullyQualifiedName":"localhost/performance_schema/hosts","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"hosts","FullyQualifiedName":"localhost/performance_schema/hosts","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"hosts","FullyQualifiedName":"localhost/performance_schema/hosts","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"hosts","FullyQualifiedName":"localhost/performance_schema/hosts","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"hosts","FullyQualifiedName":"localhost/performance_schema/hosts","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"hosts","FullyQualifiedName":"localhost/performance_schema/hosts","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"hosts","FullyQualifiedName":"localhost/performance_schema/hosts","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"hosts","FullyQualifiedName":"localhost/performance_schema/hosts","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"hosts","FullyQualifiedName":"localhost/performance_schema/hosts","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"hosts","FullyQualifiedName":"localhost/performance_schema/hosts","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"innodb_buffer_stats_by_schema","FullyQualifiedName":"localhost/sys/innodb_buffer_stats_by_schema","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"innodb_buffer_stats_by_schema","FullyQualifiedName":"localhost/sys/innodb_buffer_stats_by_schema","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"innodb_buffer_stats_by_schema","FullyQualifiedName":"localhost/sys/innodb_buffer_stats_by_schema","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"innodb_buffer_stats_by_schema","FullyQualifiedName":"localhost/sys/innodb_buffer_stats_by_schema","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"innodb_buffer_stats_by_schema","FullyQualifiedName":"localhost/sys/innodb_buffer_stats_by_schema","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"innodb_buffer_stats_by_schema","FullyQualifiedName":"localhost/sys/innodb_buffer_stats_by_schema","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"innodb_buffer_stats_by_schema","FullyQualifiedName":"localhost/sys/innodb_buffer_stats_by_schema","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"innodb_buffer_stats_by_schema","FullyQualifiedName":"localhost/sys/innodb_buffer_stats_by_schema","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"innodb_buffer_stats_by_schema","FullyQualifiedName":"localhost/sys/innodb_buffer_stats_by_schema","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"innodb_buffer_stats_by_schema","FullyQualifiedName":"localhost/sys/innodb_buffer_stats_by_schema","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"innodb_buffer_stats_by_schema","FullyQualifiedName":"localhost/sys/innodb_buffer_stats_by_schema","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"innodb_buffer_stats_by_schema","FullyQualifiedName":"localhost/sys/innodb_buffer_stats_by_schema","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"innodb_buffer_stats_by_table","FullyQualifiedName":"localhost/sys/innodb_buffer_stats_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"innodb_buffer_stats_by_table","FullyQualifiedName":"localhost/sys/innodb_buffer_stats_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"innodb_buffer_stats_by_table","FullyQualifiedName":"localhost/sys/innodb_buffer_stats_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"innodb_buffer_stats_by_table","FullyQualifiedName":"localhost/sys/innodb_buffer_stats_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"innodb_buffer_stats_by_table","FullyQualifiedName":"localhost/sys/innodb_buffer_stats_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"innodb_buffer_stats_by_table","FullyQualifiedName":"localhost/sys/innodb_buffer_stats_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"innodb_buffer_stats_by_table","FullyQualifiedName":"localhost/sys/innodb_buffer_stats_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"innodb_buffer_stats_by_table","FullyQualifiedName":"localhost/sys/innodb_buffer_stats_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"innodb_buffer_stats_by_table","FullyQualifiedName":"localhost/sys/innodb_buffer_stats_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"innodb_buffer_stats_by_table","FullyQualifiedName":"localhost/sys/innodb_buffer_stats_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"innodb_buffer_stats_by_table","FullyQualifiedName":"localhost/sys/innodb_buffer_stats_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"innodb_buffer_stats_by_table","FullyQualifiedName":"localhost/sys/innodb_buffer_stats_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"innodb_index_stats","FullyQualifiedName":"localhost/mysql/innodb_index_stats","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"innodb_index_stats","FullyQualifiedName":"localhost/mysql/innodb_index_stats","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"innodb_index_stats","FullyQualifiedName":"localhost/mysql/innodb_index_stats","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"innodb_index_stats","FullyQualifiedName":"localhost/mysql/innodb_index_stats","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"innodb_index_stats","FullyQualifiedName":"localhost/mysql/innodb_index_stats","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"innodb_index_stats","FullyQualifiedName":"localhost/mysql/innodb_index_stats","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"innodb_index_stats","FullyQualifiedName":"localhost/mysql/innodb_index_stats","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"innodb_index_stats","FullyQualifiedName":"localhost/mysql/innodb_index_stats","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"innodb_index_stats","FullyQualifiedName":"localhost/mysql/innodb_index_stats","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"innodb_index_stats","FullyQualifiedName":"localhost/mysql/innodb_index_stats","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"innodb_index_stats","FullyQualifiedName":"localhost/mysql/innodb_index_stats","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"innodb_index_stats","FullyQualifiedName":"localhost/mysql/innodb_index_stats","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"innodb_lock_waits","FullyQualifiedName":"localhost/sys/innodb_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"innodb_lock_waits","FullyQualifiedName":"localhost/sys/innodb_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"innodb_lock_waits","FullyQualifiedName":"localhost/sys/innodb_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"innodb_lock_waits","FullyQualifiedName":"localhost/sys/innodb_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"innodb_lock_waits","FullyQualifiedName":"localhost/sys/innodb_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"innodb_lock_waits","FullyQualifiedName":"localhost/sys/innodb_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"innodb_lock_waits","FullyQualifiedName":"localhost/sys/innodb_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"innodb_lock_waits","FullyQualifiedName":"localhost/sys/innodb_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"innodb_lock_waits","FullyQualifiedName":"localhost/sys/innodb_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"innodb_lock_waits","FullyQualifiedName":"localhost/sys/innodb_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"innodb_lock_waits","FullyQualifiedName":"localhost/sys/innodb_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"innodb_lock_waits","FullyQualifiedName":"localhost/sys/innodb_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"innodb_redo_log_files","FullyQualifiedName":"localhost/performance_schema/innodb_redo_log_files","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"innodb_redo_log_files","FullyQualifiedName":"localhost/performance_schema/innodb_redo_log_files","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"innodb_redo_log_files","FullyQualifiedName":"localhost/performance_schema/innodb_redo_log_files","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"innodb_redo_log_files","FullyQualifiedName":"localhost/performance_schema/innodb_redo_log_files","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"innodb_redo_log_files","FullyQualifiedName":"localhost/performance_schema/innodb_redo_log_files","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"innodb_redo_log_files","FullyQualifiedName":"localhost/performance_schema/innodb_redo_log_files","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"innodb_redo_log_files","FullyQualifiedName":"localhost/performance_schema/innodb_redo_log_files","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"innodb_redo_log_files","FullyQualifiedName":"localhost/performance_schema/innodb_redo_log_files","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"innodb_redo_log_files","FullyQualifiedName":"localhost/performance_schema/innodb_redo_log_files","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"innodb_redo_log_files","FullyQualifiedName":"localhost/performance_schema/innodb_redo_log_files","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"innodb_redo_log_files","FullyQualifiedName":"localhost/performance_schema/innodb_redo_log_files","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"innodb_redo_log_files","FullyQualifiedName":"localhost/performance_schema/innodb_redo_log_files","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"innodb_table_stats","FullyQualifiedName":"localhost/mysql/innodb_table_stats","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"innodb_table_stats","FullyQualifiedName":"localhost/mysql/innodb_table_stats","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"innodb_table_stats","FullyQualifiedName":"localhost/mysql/innodb_table_stats","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"innodb_table_stats","FullyQualifiedName":"localhost/mysql/innodb_table_stats","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"innodb_table_stats","FullyQualifiedName":"localhost/mysql/innodb_table_stats","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"innodb_table_stats","FullyQualifiedName":"localhost/mysql/innodb_table_stats","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"innodb_table_stats","FullyQualifiedName":"localhost/mysql/innodb_table_stats","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"innodb_table_stats","FullyQualifiedName":"localhost/mysql/innodb_table_stats","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"innodb_table_stats","FullyQualifiedName":"localhost/mysql/innodb_table_stats","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"innodb_table_stats","FullyQualifiedName":"localhost/mysql/innodb_table_stats","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"innodb_table_stats","FullyQualifiedName":"localhost/mysql/innodb_table_stats","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"innodb_table_stats","FullyQualifiedName":"localhost/mysql/innodb_table_stats","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"io_by_thread_by_latency","FullyQualifiedName":"localhost/sys/io_by_thread_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"io_by_thread_by_latency","FullyQualifiedName":"localhost/sys/io_by_thread_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"io_by_thread_by_latency","FullyQualifiedName":"localhost/sys/io_by_thread_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"io_by_thread_by_latency","FullyQualifiedName":"localhost/sys/io_by_thread_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"io_by_thread_by_latency","FullyQualifiedName":"localhost/sys/io_by_thread_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"io_by_thread_by_latency","FullyQualifiedName":"localhost/sys/io_by_thread_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"io_by_thread_by_latency","FullyQualifiedName":"localhost/sys/io_by_thread_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"io_by_thread_by_latency","FullyQualifiedName":"localhost/sys/io_by_thread_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"io_by_thread_by_latency","FullyQualifiedName":"localhost/sys/io_by_thread_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"io_by_thread_by_latency","FullyQualifiedName":"localhost/sys/io_by_thread_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"io_by_thread_by_latency","FullyQualifiedName":"localhost/sys/io_by_thread_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"io_by_thread_by_latency","FullyQualifiedName":"localhost/sys/io_by_thread_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"io_global_by_file_by_bytes","FullyQualifiedName":"localhost/sys/io_global_by_file_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"io_global_by_file_by_bytes","FullyQualifiedName":"localhost/sys/io_global_by_file_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"io_global_by_file_by_bytes","FullyQualifiedName":"localhost/sys/io_global_by_file_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"io_global_by_file_by_bytes","FullyQualifiedName":"localhost/sys/io_global_by_file_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"io_global_by_file_by_bytes","FullyQualifiedName":"localhost/sys/io_global_by_file_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"io_global_by_file_by_bytes","FullyQualifiedName":"localhost/sys/io_global_by_file_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"io_global_by_file_by_bytes","FullyQualifiedName":"localhost/sys/io_global_by_file_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"io_global_by_file_by_bytes","FullyQualifiedName":"localhost/sys/io_global_by_file_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"io_global_by_file_by_bytes","FullyQualifiedName":"localhost/sys/io_global_by_file_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"io_global_by_file_by_bytes","FullyQualifiedName":"localhost/sys/io_global_by_file_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"io_global_by_file_by_bytes","FullyQualifiedName":"localhost/sys/io_global_by_file_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"io_global_by_file_by_bytes","FullyQualifiedName":"localhost/sys/io_global_by_file_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"io_global_by_file_by_latency","FullyQualifiedName":"localhost/sys/io_global_by_file_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"io_global_by_file_by_latency","FullyQualifiedName":"localhost/sys/io_global_by_file_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"io_global_by_file_by_latency","FullyQualifiedName":"localhost/sys/io_global_by_file_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"io_global_by_file_by_latency","FullyQualifiedName":"localhost/sys/io_global_by_file_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"io_global_by_file_by_latency","FullyQualifiedName":"localhost/sys/io_global_by_file_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"io_global_by_file_by_latency","FullyQualifiedName":"localhost/sys/io_global_by_file_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"io_global_by_file_by_latency","FullyQualifiedName":"localhost/sys/io_global_by_file_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"io_global_by_file_by_latency","FullyQualifiedName":"localhost/sys/io_global_by_file_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"io_global_by_file_by_latency","FullyQualifiedName":"localhost/sys/io_global_by_file_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"io_global_by_file_by_latency","FullyQualifiedName":"localhost/sys/io_global_by_file_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"io_global_by_file_by_latency","FullyQualifiedName":"localhost/sys/io_global_by_file_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"io_global_by_file_by_latency","FullyQualifiedName":"localhost/sys/io_global_by_file_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"io_global_by_wait_by_bytes","FullyQualifiedName":"localhost/sys/io_global_by_wait_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"io_global_by_wait_by_bytes","FullyQualifiedName":"localhost/sys/io_global_by_wait_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"io_global_by_wait_by_bytes","FullyQualifiedName":"localhost/sys/io_global_by_wait_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"io_global_by_wait_by_bytes","FullyQualifiedName":"localhost/sys/io_global_by_wait_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"io_global_by_wait_by_bytes","FullyQualifiedName":"localhost/sys/io_global_by_wait_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"io_global_by_wait_by_bytes","FullyQualifiedName":"localhost/sys/io_global_by_wait_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"io_global_by_wait_by_bytes","FullyQualifiedName":"localhost/sys/io_global_by_wait_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"io_global_by_wait_by_bytes","FullyQualifiedName":"localhost/sys/io_global_by_wait_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"io_global_by_wait_by_bytes","FullyQualifiedName":"localhost/sys/io_global_by_wait_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"io_global_by_wait_by_bytes","FullyQualifiedName":"localhost/sys/io_global_by_wait_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"io_global_by_wait_by_bytes","FullyQualifiedName":"localhost/sys/io_global_by_wait_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"io_global_by_wait_by_bytes","FullyQualifiedName":"localhost/sys/io_global_by_wait_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"io_global_by_wait_by_latency","FullyQualifiedName":"localhost/sys/io_global_by_wait_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"io_global_by_wait_by_latency","FullyQualifiedName":"localhost/sys/io_global_by_wait_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"io_global_by_wait_by_latency","FullyQualifiedName":"localhost/sys/io_global_by_wait_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"io_global_by_wait_by_latency","FullyQualifiedName":"localhost/sys/io_global_by_wait_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"io_global_by_wait_by_latency","FullyQualifiedName":"localhost/sys/io_global_by_wait_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"io_global_by_wait_by_latency","FullyQualifiedName":"localhost/sys/io_global_by_wait_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"io_global_by_wait_by_latency","FullyQualifiedName":"localhost/sys/io_global_by_wait_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"io_global_by_wait_by_latency","FullyQualifiedName":"localhost/sys/io_global_by_wait_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"io_global_by_wait_by_latency","FullyQualifiedName":"localhost/sys/io_global_by_wait_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"io_global_by_wait_by_latency","FullyQualifiedName":"localhost/sys/io_global_by_wait_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"io_global_by_wait_by_latency","FullyQualifiedName":"localhost/sys/io_global_by_wait_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"io_global_by_wait_by_latency","FullyQualifiedName":"localhost/sys/io_global_by_wait_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"keyring_component_status","FullyQualifiedName":"localhost/performance_schema/keyring_component_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"keyring_component_status","FullyQualifiedName":"localhost/performance_schema/keyring_component_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"keyring_component_status","FullyQualifiedName":"localhost/performance_schema/keyring_component_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"keyring_component_status","FullyQualifiedName":"localhost/performance_schema/keyring_component_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"keyring_component_status","FullyQualifiedName":"localhost/performance_schema/keyring_component_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"keyring_component_status","FullyQualifiedName":"localhost/performance_schema/keyring_component_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"keyring_component_status","FullyQualifiedName":"localhost/performance_schema/keyring_component_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"keyring_component_status","FullyQualifiedName":"localhost/performance_schema/keyring_component_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"keyring_component_status","FullyQualifiedName":"localhost/performance_schema/keyring_component_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"keyring_component_status","FullyQualifiedName":"localhost/performance_schema/keyring_component_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"keyring_component_status","FullyQualifiedName":"localhost/performance_schema/keyring_component_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"keyring_component_status","FullyQualifiedName":"localhost/performance_schema/keyring_component_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"keyring_keys","FullyQualifiedName":"localhost/performance_schema/keyring_keys","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"keyring_keys","FullyQualifiedName":"localhost/performance_schema/keyring_keys","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"keyring_keys","FullyQualifiedName":"localhost/performance_schema/keyring_keys","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"keyring_keys","FullyQualifiedName":"localhost/performance_schema/keyring_keys","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"keyring_keys","FullyQualifiedName":"localhost/performance_schema/keyring_keys","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"keyring_keys","FullyQualifiedName":"localhost/performance_schema/keyring_keys","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"keyring_keys","FullyQualifiedName":"localhost/performance_schema/keyring_keys","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"keyring_keys","FullyQualifiedName":"localhost/performance_schema/keyring_keys","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"keyring_keys","FullyQualifiedName":"localhost/performance_schema/keyring_keys","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"keyring_keys","FullyQualifiedName":"localhost/performance_schema/keyring_keys","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"keyring_keys","FullyQualifiedName":"localhost/performance_schema/keyring_keys","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"keyring_keys","FullyQualifiedName":"localhost/performance_schema/keyring_keys","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"latest_file_io","FullyQualifiedName":"localhost/sys/latest_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"latest_file_io","FullyQualifiedName":"localhost/sys/latest_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"latest_file_io","FullyQualifiedName":"localhost/sys/latest_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"latest_file_io","FullyQualifiedName":"localhost/sys/latest_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"latest_file_io","FullyQualifiedName":"localhost/sys/latest_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"latest_file_io","FullyQualifiedName":"localhost/sys/latest_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"latest_file_io","FullyQualifiedName":"localhost/sys/latest_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"latest_file_io","FullyQualifiedName":"localhost/sys/latest_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"latest_file_io","FullyQualifiedName":"localhost/sys/latest_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"latest_file_io","FullyQualifiedName":"localhost/sys/latest_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"latest_file_io","FullyQualifiedName":"localhost/sys/latest_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"latest_file_io","FullyQualifiedName":"localhost/sys/latest_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"list_add","FullyQualifiedName":"localhost/sys/list_add","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"list_add","FullyQualifiedName":"localhost/sys/list_add","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"list_drop","FullyQualifiedName":"localhost/sys/list_drop","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"list_drop","FullyQualifiedName":"localhost/sys/list_drop","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"log_status","FullyQualifiedName":"localhost/performance_schema/log_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"log_status","FullyQualifiedName":"localhost/performance_schema/log_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"log_status","FullyQualifiedName":"localhost/performance_schema/log_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"log_status","FullyQualifiedName":"localhost/performance_schema/log_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"log_status","FullyQualifiedName":"localhost/performance_schema/log_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"log_status","FullyQualifiedName":"localhost/performance_schema/log_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"log_status","FullyQualifiedName":"localhost/performance_schema/log_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"log_status","FullyQualifiedName":"localhost/performance_schema/log_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"log_status","FullyQualifiedName":"localhost/performance_schema/log_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"log_status","FullyQualifiedName":"localhost/performance_schema/log_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"log_status","FullyQualifiedName":"localhost/performance_schema/log_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"log_status","FullyQualifiedName":"localhost/performance_schema/log_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"memory_by_host_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_host_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"memory_by_host_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_host_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"memory_by_host_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_host_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"memory_by_host_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_host_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"memory_by_host_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_host_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"memory_by_host_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_host_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"memory_by_host_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_host_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"memory_by_host_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_host_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"memory_by_host_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_host_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"memory_by_host_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_host_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"memory_by_host_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_host_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"memory_by_host_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_host_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"memory_by_thread_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_thread_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"memory_by_thread_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_thread_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"memory_by_thread_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_thread_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"memory_by_thread_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_thread_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"memory_by_thread_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_thread_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"memory_by_thread_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_thread_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"memory_by_thread_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_thread_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"memory_by_thread_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_thread_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"memory_by_thread_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_thread_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"memory_by_thread_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_thread_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"memory_by_thread_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_thread_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"memory_by_thread_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_thread_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"memory_by_user_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_user_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"memory_by_user_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_user_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"memory_by_user_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_user_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"memory_by_user_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_user_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"memory_by_user_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_user_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"memory_by_user_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_user_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"memory_by_user_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_user_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"memory_by_user_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_user_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"memory_by_user_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_user_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"memory_by_user_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_user_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"memory_by_user_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_user_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"memory_by_user_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_by_user_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"memory_global_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_global_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"memory_global_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_global_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"memory_global_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_global_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"memory_global_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_global_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"memory_global_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_global_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"memory_global_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_global_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"memory_global_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_global_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"memory_global_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_global_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"memory_global_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_global_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"memory_global_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_global_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"memory_global_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_global_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"memory_global_by_current_bytes","FullyQualifiedName":"localhost/sys/memory_global_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"memory_global_total","FullyQualifiedName":"localhost/sys/memory_global_total","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"memory_global_total","FullyQualifiedName":"localhost/sys/memory_global_total","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"memory_global_total","FullyQualifiedName":"localhost/sys/memory_global_total","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"memory_global_total","FullyQualifiedName":"localhost/sys/memory_global_total","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"memory_global_total","FullyQualifiedName":"localhost/sys/memory_global_total","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"memory_global_total","FullyQualifiedName":"localhost/sys/memory_global_total","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"memory_global_total","FullyQualifiedName":"localhost/sys/memory_global_total","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"memory_global_total","FullyQualifiedName":"localhost/sys/memory_global_total","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"memory_global_total","FullyQualifiedName":"localhost/sys/memory_global_total","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"memory_global_total","FullyQualifiedName":"localhost/sys/memory_global_total","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"memory_global_total","FullyQualifiedName":"localhost/sys/memory_global_total","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"memory_global_total","FullyQualifiedName":"localhost/sys/memory_global_total","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"memory_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"memory_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"memory_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"memory_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"memory_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"memory_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"memory_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"memory_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"memory_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"memory_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"memory_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"memory_summary_by_account_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_account_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"memory_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"memory_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"memory_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"memory_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"memory_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"memory_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"memory_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"memory_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"memory_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"memory_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"memory_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"memory_summary_by_host_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_host_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"memory_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"memory_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"memory_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"memory_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"memory_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"memory_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"memory_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"memory_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"memory_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"memory_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"memory_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"memory_summary_by_thread_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_thread_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"memory_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"memory_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"memory_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"memory_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"memory_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"memory_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"memory_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"memory_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"memory_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"memory_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"memory_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"memory_summary_by_user_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_by_user_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"memory_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"memory_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"memory_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"memory_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"memory_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"memory_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"memory_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"memory_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"memory_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"memory_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"memory_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"memory_summary_global_by_event_name","FullyQualifiedName":"localhost/performance_schema/memory_summary_global_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"metadata_locks","FullyQualifiedName":"localhost/performance_schema/metadata_locks","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"metadata_locks","FullyQualifiedName":"localhost/performance_schema/metadata_locks","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"metadata_locks","FullyQualifiedName":"localhost/performance_schema/metadata_locks","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"metadata_locks","FullyQualifiedName":"localhost/performance_schema/metadata_locks","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"metadata_locks","FullyQualifiedName":"localhost/performance_schema/metadata_locks","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"metadata_locks","FullyQualifiedName":"localhost/performance_schema/metadata_locks","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"metadata_locks","FullyQualifiedName":"localhost/performance_schema/metadata_locks","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"metadata_locks","FullyQualifiedName":"localhost/performance_schema/metadata_locks","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"metadata_locks","FullyQualifiedName":"localhost/performance_schema/metadata_locks","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"metadata_locks","FullyQualifiedName":"localhost/performance_schema/metadata_locks","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"metadata_locks","FullyQualifiedName":"localhost/performance_schema/metadata_locks","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"metadata_locks","FullyQualifiedName":"localhost/performance_schema/metadata_locks","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"metrics","FullyQualifiedName":"localhost/sys/metrics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"metrics","FullyQualifiedName":"localhost/sys/metrics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"metrics","FullyQualifiedName":"localhost/sys/metrics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"metrics","FullyQualifiedName":"localhost/sys/metrics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"metrics","FullyQualifiedName":"localhost/sys/metrics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"metrics","FullyQualifiedName":"localhost/sys/metrics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"metrics","FullyQualifiedName":"localhost/sys/metrics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"metrics","FullyQualifiedName":"localhost/sys/metrics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"metrics","FullyQualifiedName":"localhost/sys/metrics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"metrics","FullyQualifiedName":"localhost/sys/metrics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"metrics","FullyQualifiedName":"localhost/sys/metrics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"metrics","FullyQualifiedName":"localhost/sys/metrics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"mutex_instances","FullyQualifiedName":"localhost/performance_schema/mutex_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"mutex_instances","FullyQualifiedName":"localhost/performance_schema/mutex_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"mutex_instances","FullyQualifiedName":"localhost/performance_schema/mutex_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"mutex_instances","FullyQualifiedName":"localhost/performance_schema/mutex_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"mutex_instances","FullyQualifiedName":"localhost/performance_schema/mutex_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"mutex_instances","FullyQualifiedName":"localhost/performance_schema/mutex_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"mutex_instances","FullyQualifiedName":"localhost/performance_schema/mutex_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"mutex_instances","FullyQualifiedName":"localhost/performance_schema/mutex_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"mutex_instances","FullyQualifiedName":"localhost/performance_schema/mutex_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"mutex_instances","FullyQualifiedName":"localhost/performance_schema/mutex_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"mutex_instances","FullyQualifiedName":"localhost/performance_schema/mutex_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"mutex_instances","FullyQualifiedName":"localhost/performance_schema/mutex_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"CREATE ROUTINE","Parent":null}},{"Resource":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"CREATE TEMPORARY TABLES","Parent":null}},{"Resource":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"EVENT","Parent":null}},{"Resource":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"LOCK TABLES","Parent":null}},{"Resource":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"ndb_binlog_index","FullyQualifiedName":"localhost/mysql/ndb_binlog_index","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"ndb_binlog_index","FullyQualifiedName":"localhost/mysql/ndb_binlog_index","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"ndb_binlog_index","FullyQualifiedName":"localhost/mysql/ndb_binlog_index","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"ndb_binlog_index","FullyQualifiedName":"localhost/mysql/ndb_binlog_index","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"ndb_binlog_index","FullyQualifiedName":"localhost/mysql/ndb_binlog_index","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"ndb_binlog_index","FullyQualifiedName":"localhost/mysql/ndb_binlog_index","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"ndb_binlog_index","FullyQualifiedName":"localhost/mysql/ndb_binlog_index","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"ndb_binlog_index","FullyQualifiedName":"localhost/mysql/ndb_binlog_index","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"ndb_binlog_index","FullyQualifiedName":"localhost/mysql/ndb_binlog_index","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"ndb_binlog_index","FullyQualifiedName":"localhost/mysql/ndb_binlog_index","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"ndb_binlog_index","FullyQualifiedName":"localhost/mysql/ndb_binlog_index","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"ndb_binlog_index","FullyQualifiedName":"localhost/mysql/ndb_binlog_index","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"objects_summary_global_by_type","FullyQualifiedName":"localhost/performance_schema/objects_summary_global_by_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"objects_summary_global_by_type","FullyQualifiedName":"localhost/performance_schema/objects_summary_global_by_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"objects_summary_global_by_type","FullyQualifiedName":"localhost/performance_schema/objects_summary_global_by_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"objects_summary_global_by_type","FullyQualifiedName":"localhost/performance_schema/objects_summary_global_by_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"objects_summary_global_by_type","FullyQualifiedName":"localhost/performance_schema/objects_summary_global_by_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"objects_summary_global_by_type","FullyQualifiedName":"localhost/performance_schema/objects_summary_global_by_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"objects_summary_global_by_type","FullyQualifiedName":"localhost/performance_schema/objects_summary_global_by_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"objects_summary_global_by_type","FullyQualifiedName":"localhost/performance_schema/objects_summary_global_by_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"objects_summary_global_by_type","FullyQualifiedName":"localhost/performance_schema/objects_summary_global_by_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"objects_summary_global_by_type","FullyQualifiedName":"localhost/performance_schema/objects_summary_global_by_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"objects_summary_global_by_type","FullyQualifiedName":"localhost/performance_schema/objects_summary_global_by_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"objects_summary_global_by_type","FullyQualifiedName":"localhost/performance_schema/objects_summary_global_by_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"password_history","FullyQualifiedName":"localhost/mysql/password_history","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"password_history","FullyQualifiedName":"localhost/mysql/password_history","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"password_history","FullyQualifiedName":"localhost/mysql/password_history","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"password_history","FullyQualifiedName":"localhost/mysql/password_history","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"password_history","FullyQualifiedName":"localhost/mysql/password_history","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"password_history","FullyQualifiedName":"localhost/mysql/password_history","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"password_history","FullyQualifiedName":"localhost/mysql/password_history","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"password_history","FullyQualifiedName":"localhost/mysql/password_history","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"password_history","FullyQualifiedName":"localhost/mysql/password_history","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"password_history","FullyQualifiedName":"localhost/mysql/password_history","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"password_history","FullyQualifiedName":"localhost/mysql/password_history","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"password_history","FullyQualifiedName":"localhost/mysql/password_history","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"performance_timers","FullyQualifiedName":"localhost/performance_schema/performance_timers","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"performance_timers","FullyQualifiedName":"localhost/performance_schema/performance_timers","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"performance_timers","FullyQualifiedName":"localhost/performance_schema/performance_timers","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"performance_timers","FullyQualifiedName":"localhost/performance_schema/performance_timers","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"performance_timers","FullyQualifiedName":"localhost/performance_schema/performance_timers","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"performance_timers","FullyQualifiedName":"localhost/performance_schema/performance_timers","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"performance_timers","FullyQualifiedName":"localhost/performance_schema/performance_timers","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"performance_timers","FullyQualifiedName":"localhost/performance_schema/performance_timers","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"performance_timers","FullyQualifiedName":"localhost/performance_schema/performance_timers","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"performance_timers","FullyQualifiedName":"localhost/performance_schema/performance_timers","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"performance_timers","FullyQualifiedName":"localhost/performance_schema/performance_timers","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"performance_timers","FullyQualifiedName":"localhost/performance_schema/performance_timers","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"persisted_variables","FullyQualifiedName":"localhost/performance_schema/persisted_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"persisted_variables","FullyQualifiedName":"localhost/performance_schema/persisted_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"persisted_variables","FullyQualifiedName":"localhost/performance_schema/persisted_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"persisted_variables","FullyQualifiedName":"localhost/performance_schema/persisted_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"persisted_variables","FullyQualifiedName":"localhost/performance_schema/persisted_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"persisted_variables","FullyQualifiedName":"localhost/performance_schema/persisted_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"persisted_variables","FullyQualifiedName":"localhost/performance_schema/persisted_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"persisted_variables","FullyQualifiedName":"localhost/performance_schema/persisted_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"persisted_variables","FullyQualifiedName":"localhost/performance_schema/persisted_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"persisted_variables","FullyQualifiedName":"localhost/performance_schema/persisted_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"persisted_variables","FullyQualifiedName":"localhost/performance_schema/persisted_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"persisted_variables","FullyQualifiedName":"localhost/performance_schema/persisted_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"plugin","FullyQualifiedName":"localhost/mysql/plugin","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"plugin","FullyQualifiedName":"localhost/mysql/plugin","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"plugin","FullyQualifiedName":"localhost/mysql/plugin","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"plugin","FullyQualifiedName":"localhost/mysql/plugin","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"plugin","FullyQualifiedName":"localhost/mysql/plugin","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"plugin","FullyQualifiedName":"localhost/mysql/plugin","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"plugin","FullyQualifiedName":"localhost/mysql/plugin","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"plugin","FullyQualifiedName":"localhost/mysql/plugin","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"plugin","FullyQualifiedName":"localhost/mysql/plugin","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"plugin","FullyQualifiedName":"localhost/mysql/plugin","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"plugin","FullyQualifiedName":"localhost/mysql/plugin","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"plugin","FullyQualifiedName":"localhost/mysql/plugin","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"prepared_statements_instances","FullyQualifiedName":"localhost/performance_schema/prepared_statements_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"prepared_statements_instances","FullyQualifiedName":"localhost/performance_schema/prepared_statements_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"prepared_statements_instances","FullyQualifiedName":"localhost/performance_schema/prepared_statements_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"prepared_statements_instances","FullyQualifiedName":"localhost/performance_schema/prepared_statements_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"prepared_statements_instances","FullyQualifiedName":"localhost/performance_schema/prepared_statements_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"prepared_statements_instances","FullyQualifiedName":"localhost/performance_schema/prepared_statements_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"prepared_statements_instances","FullyQualifiedName":"localhost/performance_schema/prepared_statements_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"prepared_statements_instances","FullyQualifiedName":"localhost/performance_schema/prepared_statements_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"prepared_statements_instances","FullyQualifiedName":"localhost/performance_schema/prepared_statements_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"prepared_statements_instances","FullyQualifiedName":"localhost/performance_schema/prepared_statements_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"prepared_statements_instances","FullyQualifiedName":"localhost/performance_schema/prepared_statements_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"prepared_statements_instances","FullyQualifiedName":"localhost/performance_schema/prepared_statements_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"processlist","FullyQualifiedName":"localhost/sys/processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"processlist","FullyQualifiedName":"localhost/performance_schema/processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"processlist","FullyQualifiedName":"localhost/sys/processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"processlist","FullyQualifiedName":"localhost/performance_schema/processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"processlist","FullyQualifiedName":"localhost/sys/processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"processlist","FullyQualifiedName":"localhost/performance_schema/processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"processlist","FullyQualifiedName":"localhost/sys/processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"processlist","FullyQualifiedName":"localhost/performance_schema/processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"processlist","FullyQualifiedName":"localhost/sys/processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"processlist","FullyQualifiedName":"localhost/performance_schema/processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"processlist","FullyQualifiedName":"localhost/sys/processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"processlist","FullyQualifiedName":"localhost/performance_schema/processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"processlist","FullyQualifiedName":"localhost/sys/processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"processlist","FullyQualifiedName":"localhost/performance_schema/processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"processlist","FullyQualifiedName":"localhost/sys/processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"processlist","FullyQualifiedName":"localhost/performance_schema/processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"processlist","FullyQualifiedName":"localhost/sys/processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"processlist","FullyQualifiedName":"localhost/performance_schema/processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"processlist","FullyQualifiedName":"localhost/sys/processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"processlist","FullyQualifiedName":"localhost/performance_schema/processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"processlist","FullyQualifiedName":"localhost/sys/processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"processlist","FullyQualifiedName":"localhost/performance_schema/processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"processlist","FullyQualifiedName":"localhost/sys/processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"processlist","FullyQualifiedName":"localhost/performance_schema/processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"procs_priv","FullyQualifiedName":"localhost/mysql/procs_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"procs_priv","FullyQualifiedName":"localhost/mysql/procs_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"procs_priv","FullyQualifiedName":"localhost/mysql/procs_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"procs_priv","FullyQualifiedName":"localhost/mysql/procs_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"procs_priv","FullyQualifiedName":"localhost/mysql/procs_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"procs_priv","FullyQualifiedName":"localhost/mysql/procs_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"procs_priv","FullyQualifiedName":"localhost/mysql/procs_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"procs_priv","FullyQualifiedName":"localhost/mysql/procs_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"procs_priv","FullyQualifiedName":"localhost/mysql/procs_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"procs_priv","FullyQualifiedName":"localhost/mysql/procs_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"procs_priv","FullyQualifiedName":"localhost/mysql/procs_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"procs_priv","FullyQualifiedName":"localhost/mysql/procs_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"proxies_priv","FullyQualifiedName":"localhost/mysql/proxies_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"proxies_priv","FullyQualifiedName":"localhost/mysql/proxies_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"proxies_priv","FullyQualifiedName":"localhost/mysql/proxies_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"proxies_priv","FullyQualifiedName":"localhost/mysql/proxies_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"proxies_priv","FullyQualifiedName":"localhost/mysql/proxies_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"proxies_priv","FullyQualifiedName":"localhost/mysql/proxies_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"proxies_priv","FullyQualifiedName":"localhost/mysql/proxies_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"proxies_priv","FullyQualifiedName":"localhost/mysql/proxies_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"proxies_priv","FullyQualifiedName":"localhost/mysql/proxies_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"proxies_priv","FullyQualifiedName":"localhost/mysql/proxies_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"proxies_priv","FullyQualifiedName":"localhost/mysql/proxies_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"proxies_priv","FullyQualifiedName":"localhost/mysql/proxies_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"ps_check_lost_instrumentation","FullyQualifiedName":"localhost/sys/ps_check_lost_instrumentation","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"ps_check_lost_instrumentation","FullyQualifiedName":"localhost/sys/ps_check_lost_instrumentation","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"ps_check_lost_instrumentation","FullyQualifiedName":"localhost/sys/ps_check_lost_instrumentation","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"ps_check_lost_instrumentation","FullyQualifiedName":"localhost/sys/ps_check_lost_instrumentation","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"ps_check_lost_instrumentation","FullyQualifiedName":"localhost/sys/ps_check_lost_instrumentation","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"ps_check_lost_instrumentation","FullyQualifiedName":"localhost/sys/ps_check_lost_instrumentation","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"ps_check_lost_instrumentation","FullyQualifiedName":"localhost/sys/ps_check_lost_instrumentation","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"ps_check_lost_instrumentation","FullyQualifiedName":"localhost/sys/ps_check_lost_instrumentation","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"ps_check_lost_instrumentation","FullyQualifiedName":"localhost/sys/ps_check_lost_instrumentation","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"ps_check_lost_instrumentation","FullyQualifiedName":"localhost/sys/ps_check_lost_instrumentation","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"ps_check_lost_instrumentation","FullyQualifiedName":"localhost/sys/ps_check_lost_instrumentation","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"ps_check_lost_instrumentation","FullyQualifiedName":"localhost/sys/ps_check_lost_instrumentation","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"ps_is_account_enabled","FullyQualifiedName":"localhost/sys/ps_is_account_enabled","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_is_account_enabled","FullyQualifiedName":"localhost/sys/ps_is_account_enabled","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_is_consumer_enabled","FullyQualifiedName":"localhost/sys/ps_is_consumer_enabled","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_is_consumer_enabled","FullyQualifiedName":"localhost/sys/ps_is_consumer_enabled","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_is_instrument_default_enabled","FullyQualifiedName":"localhost/sys/ps_is_instrument_default_enabled","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_is_instrument_default_enabled","FullyQualifiedName":"localhost/sys/ps_is_instrument_default_enabled","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_is_instrument_default_timed","FullyQualifiedName":"localhost/sys/ps_is_instrument_default_timed","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_is_instrument_default_timed","FullyQualifiedName":"localhost/sys/ps_is_instrument_default_timed","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_is_thread_instrumented","FullyQualifiedName":"localhost/sys/ps_is_thread_instrumented","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_is_thread_instrumented","FullyQualifiedName":"localhost/sys/ps_is_thread_instrumented","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_setup_disable_background_threads","FullyQualifiedName":"localhost/sys/ps_setup_disable_background_threads","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_setup_disable_background_threads","FullyQualifiedName":"localhost/sys/ps_setup_disable_background_threads","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_setup_disable_consumer","FullyQualifiedName":"localhost/sys/ps_setup_disable_consumer","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_setup_disable_consumer","FullyQualifiedName":"localhost/sys/ps_setup_disable_consumer","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_setup_disable_instrument","FullyQualifiedName":"localhost/sys/ps_setup_disable_instrument","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_setup_disable_instrument","FullyQualifiedName":"localhost/sys/ps_setup_disable_instrument","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_setup_disable_thread","FullyQualifiedName":"localhost/sys/ps_setup_disable_thread","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_setup_disable_thread","FullyQualifiedName":"localhost/sys/ps_setup_disable_thread","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_setup_enable_background_threads","FullyQualifiedName":"localhost/sys/ps_setup_enable_background_threads","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_setup_enable_background_threads","FullyQualifiedName":"localhost/sys/ps_setup_enable_background_threads","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_setup_enable_consumer","FullyQualifiedName":"localhost/sys/ps_setup_enable_consumer","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_setup_enable_consumer","FullyQualifiedName":"localhost/sys/ps_setup_enable_consumer","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_setup_enable_instrument","FullyQualifiedName":"localhost/sys/ps_setup_enable_instrument","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_setup_enable_instrument","FullyQualifiedName":"localhost/sys/ps_setup_enable_instrument","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_setup_enable_thread","FullyQualifiedName":"localhost/sys/ps_setup_enable_thread","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_setup_enable_thread","FullyQualifiedName":"localhost/sys/ps_setup_enable_thread","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_setup_reload_saved","FullyQualifiedName":"localhost/sys/ps_setup_reload_saved","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_setup_reload_saved","FullyQualifiedName":"localhost/sys/ps_setup_reload_saved","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_setup_reset_to_default","FullyQualifiedName":"localhost/sys/ps_setup_reset_to_default","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_setup_reset_to_default","FullyQualifiedName":"localhost/sys/ps_setup_reset_to_default","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_setup_save","FullyQualifiedName":"localhost/sys/ps_setup_save","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_setup_save","FullyQualifiedName":"localhost/sys/ps_setup_save","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_setup_show_disabled","FullyQualifiedName":"localhost/sys/ps_setup_show_disabled","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_setup_show_disabled","FullyQualifiedName":"localhost/sys/ps_setup_show_disabled","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_setup_show_disabled_consumers","FullyQualifiedName":"localhost/sys/ps_setup_show_disabled_consumers","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_setup_show_disabled_consumers","FullyQualifiedName":"localhost/sys/ps_setup_show_disabled_consumers","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_setup_show_disabled_instruments","FullyQualifiedName":"localhost/sys/ps_setup_show_disabled_instruments","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_setup_show_disabled_instruments","FullyQualifiedName":"localhost/sys/ps_setup_show_disabled_instruments","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_setup_show_enabled","FullyQualifiedName":"localhost/sys/ps_setup_show_enabled","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_setup_show_enabled","FullyQualifiedName":"localhost/sys/ps_setup_show_enabled","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_setup_show_enabled_consumers","FullyQualifiedName":"localhost/sys/ps_setup_show_enabled_consumers","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_setup_show_enabled_consumers","FullyQualifiedName":"localhost/sys/ps_setup_show_enabled_consumers","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_setup_show_enabled_instruments","FullyQualifiedName":"localhost/sys/ps_setup_show_enabled_instruments","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_setup_show_enabled_instruments","FullyQualifiedName":"localhost/sys/ps_setup_show_enabled_instruments","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_statement_avg_latency_histogram","FullyQualifiedName":"localhost/sys/ps_statement_avg_latency_histogram","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_statement_avg_latency_histogram","FullyQualifiedName":"localhost/sys/ps_statement_avg_latency_histogram","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_thread_account","FullyQualifiedName":"localhost/sys/ps_thread_account","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_thread_account","FullyQualifiedName":"localhost/sys/ps_thread_account","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_thread_id","FullyQualifiedName":"localhost/sys/ps_thread_id","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_thread_id","FullyQualifiedName":"localhost/sys/ps_thread_id","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_thread_stack","FullyQualifiedName":"localhost/sys/ps_thread_stack","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_thread_stack","FullyQualifiedName":"localhost/sys/ps_thread_stack","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_thread_trx_info","FullyQualifiedName":"localhost/sys/ps_thread_trx_info","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_thread_trx_info","FullyQualifiedName":"localhost/sys/ps_thread_trx_info","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_trace_statement_digest","FullyQualifiedName":"localhost/sys/ps_trace_statement_digest","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_trace_statement_digest","FullyQualifiedName":"localhost/sys/ps_trace_statement_digest","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_trace_thread","FullyQualifiedName":"localhost/sys/ps_trace_thread","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_trace_thread","FullyQualifiedName":"localhost/sys/ps_trace_thread","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"ps_truncate_all_tables","FullyQualifiedName":"localhost/sys/ps_truncate_all_tables","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"ps_truncate_all_tables","FullyQualifiedName":"localhost/sys/ps_truncate_all_tables","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"quote_identifier","FullyQualifiedName":"localhost/sys/quote_identifier","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"quote_identifier","FullyQualifiedName":"localhost/sys/quote_identifier","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"replication_applier_configuration","FullyQualifiedName":"localhost/performance_schema/replication_applier_configuration","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"replication_applier_configuration","FullyQualifiedName":"localhost/performance_schema/replication_applier_configuration","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"replication_applier_configuration","FullyQualifiedName":"localhost/performance_schema/replication_applier_configuration","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"replication_applier_configuration","FullyQualifiedName":"localhost/performance_schema/replication_applier_configuration","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"replication_applier_configuration","FullyQualifiedName":"localhost/performance_schema/replication_applier_configuration","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"replication_applier_configuration","FullyQualifiedName":"localhost/performance_schema/replication_applier_configuration","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"replication_applier_configuration","FullyQualifiedName":"localhost/performance_schema/replication_applier_configuration","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"replication_applier_configuration","FullyQualifiedName":"localhost/performance_schema/replication_applier_configuration","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"replication_applier_configuration","FullyQualifiedName":"localhost/performance_schema/replication_applier_configuration","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"replication_applier_configuration","FullyQualifiedName":"localhost/performance_schema/replication_applier_configuration","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"replication_applier_configuration","FullyQualifiedName":"localhost/performance_schema/replication_applier_configuration","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"replication_applier_configuration","FullyQualifiedName":"localhost/performance_schema/replication_applier_configuration","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"replication_applier_filters","FullyQualifiedName":"localhost/performance_schema/replication_applier_filters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"replication_applier_filters","FullyQualifiedName":"localhost/performance_schema/replication_applier_filters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"replication_applier_filters","FullyQualifiedName":"localhost/performance_schema/replication_applier_filters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"replication_applier_filters","FullyQualifiedName":"localhost/performance_schema/replication_applier_filters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"replication_applier_filters","FullyQualifiedName":"localhost/performance_schema/replication_applier_filters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"replication_applier_filters","FullyQualifiedName":"localhost/performance_schema/replication_applier_filters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"replication_applier_filters","FullyQualifiedName":"localhost/performance_schema/replication_applier_filters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"replication_applier_filters","FullyQualifiedName":"localhost/performance_schema/replication_applier_filters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"replication_applier_filters","FullyQualifiedName":"localhost/performance_schema/replication_applier_filters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"replication_applier_filters","FullyQualifiedName":"localhost/performance_schema/replication_applier_filters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"replication_applier_filters","FullyQualifiedName":"localhost/performance_schema/replication_applier_filters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"replication_applier_filters","FullyQualifiedName":"localhost/performance_schema/replication_applier_filters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"replication_applier_global_filters","FullyQualifiedName":"localhost/performance_schema/replication_applier_global_filters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"replication_applier_global_filters","FullyQualifiedName":"localhost/performance_schema/replication_applier_global_filters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"replication_applier_global_filters","FullyQualifiedName":"localhost/performance_schema/replication_applier_global_filters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"replication_applier_global_filters","FullyQualifiedName":"localhost/performance_schema/replication_applier_global_filters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"replication_applier_global_filters","FullyQualifiedName":"localhost/performance_schema/replication_applier_global_filters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"replication_applier_global_filters","FullyQualifiedName":"localhost/performance_schema/replication_applier_global_filters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"replication_applier_global_filters","FullyQualifiedName":"localhost/performance_schema/replication_applier_global_filters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"replication_applier_global_filters","FullyQualifiedName":"localhost/performance_schema/replication_applier_global_filters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"replication_applier_global_filters","FullyQualifiedName":"localhost/performance_schema/replication_applier_global_filters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"replication_applier_global_filters","FullyQualifiedName":"localhost/performance_schema/replication_applier_global_filters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"replication_applier_global_filters","FullyQualifiedName":"localhost/performance_schema/replication_applier_global_filters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"replication_applier_global_filters","FullyQualifiedName":"localhost/performance_schema/replication_applier_global_filters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"replication_applier_status","FullyQualifiedName":"localhost/performance_schema/replication_applier_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"replication_applier_status","FullyQualifiedName":"localhost/performance_schema/replication_applier_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"replication_applier_status","FullyQualifiedName":"localhost/performance_schema/replication_applier_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"replication_applier_status","FullyQualifiedName":"localhost/performance_schema/replication_applier_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"replication_applier_status","FullyQualifiedName":"localhost/performance_schema/replication_applier_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"replication_applier_status","FullyQualifiedName":"localhost/performance_schema/replication_applier_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"replication_applier_status","FullyQualifiedName":"localhost/performance_schema/replication_applier_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"replication_applier_status","FullyQualifiedName":"localhost/performance_schema/replication_applier_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"replication_applier_status","FullyQualifiedName":"localhost/performance_schema/replication_applier_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"replication_applier_status","FullyQualifiedName":"localhost/performance_schema/replication_applier_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"replication_applier_status","FullyQualifiedName":"localhost/performance_schema/replication_applier_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"replication_applier_status","FullyQualifiedName":"localhost/performance_schema/replication_applier_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"replication_applier_status_by_coordinator","FullyQualifiedName":"localhost/performance_schema/replication_applier_status_by_coordinator","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"replication_applier_status_by_coordinator","FullyQualifiedName":"localhost/performance_schema/replication_applier_status_by_coordinator","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"replication_applier_status_by_coordinator","FullyQualifiedName":"localhost/performance_schema/replication_applier_status_by_coordinator","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"replication_applier_status_by_coordinator","FullyQualifiedName":"localhost/performance_schema/replication_applier_status_by_coordinator","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"replication_applier_status_by_coordinator","FullyQualifiedName":"localhost/performance_schema/replication_applier_status_by_coordinator","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"replication_applier_status_by_coordinator","FullyQualifiedName":"localhost/performance_schema/replication_applier_status_by_coordinator","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"replication_applier_status_by_coordinator","FullyQualifiedName":"localhost/performance_schema/replication_applier_status_by_coordinator","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"replication_applier_status_by_coordinator","FullyQualifiedName":"localhost/performance_schema/replication_applier_status_by_coordinator","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"replication_applier_status_by_coordinator","FullyQualifiedName":"localhost/performance_schema/replication_applier_status_by_coordinator","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"replication_applier_status_by_coordinator","FullyQualifiedName":"localhost/performance_schema/replication_applier_status_by_coordinator","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"replication_applier_status_by_coordinator","FullyQualifiedName":"localhost/performance_schema/replication_applier_status_by_coordinator","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"replication_applier_status_by_coordinator","FullyQualifiedName":"localhost/performance_schema/replication_applier_status_by_coordinator","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"replication_applier_status_by_worker","FullyQualifiedName":"localhost/performance_schema/replication_applier_status_by_worker","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"replication_applier_status_by_worker","FullyQualifiedName":"localhost/performance_schema/replication_applier_status_by_worker","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"replication_applier_status_by_worker","FullyQualifiedName":"localhost/performance_schema/replication_applier_status_by_worker","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"replication_applier_status_by_worker","FullyQualifiedName":"localhost/performance_schema/replication_applier_status_by_worker","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"replication_applier_status_by_worker","FullyQualifiedName":"localhost/performance_schema/replication_applier_status_by_worker","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"replication_applier_status_by_worker","FullyQualifiedName":"localhost/performance_schema/replication_applier_status_by_worker","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"replication_applier_status_by_worker","FullyQualifiedName":"localhost/performance_schema/replication_applier_status_by_worker","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"replication_applier_status_by_worker","FullyQualifiedName":"localhost/performance_schema/replication_applier_status_by_worker","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"replication_applier_status_by_worker","FullyQualifiedName":"localhost/performance_schema/replication_applier_status_by_worker","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"replication_applier_status_by_worker","FullyQualifiedName":"localhost/performance_schema/replication_applier_status_by_worker","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"replication_applier_status_by_worker","FullyQualifiedName":"localhost/performance_schema/replication_applier_status_by_worker","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"replication_applier_status_by_worker","FullyQualifiedName":"localhost/performance_schema/replication_applier_status_by_worker","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover","FullyQualifiedName":"localhost/mysql/replication_asynchronous_connection_failover","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover","FullyQualifiedName":"localhost/performance_schema/replication_asynchronous_connection_failover","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover","FullyQualifiedName":"localhost/mysql/replication_asynchronous_connection_failover","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover","FullyQualifiedName":"localhost/performance_schema/replication_asynchronous_connection_failover","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover","FullyQualifiedName":"localhost/mysql/replication_asynchronous_connection_failover","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover","FullyQualifiedName":"localhost/performance_schema/replication_asynchronous_connection_failover","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover","FullyQualifiedName":"localhost/mysql/replication_asynchronous_connection_failover","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover","FullyQualifiedName":"localhost/performance_schema/replication_asynchronous_connection_failover","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover","FullyQualifiedName":"localhost/mysql/replication_asynchronous_connection_failover","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover","FullyQualifiedName":"localhost/performance_schema/replication_asynchronous_connection_failover","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover","FullyQualifiedName":"localhost/mysql/replication_asynchronous_connection_failover","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover","FullyQualifiedName":"localhost/performance_schema/replication_asynchronous_connection_failover","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover","FullyQualifiedName":"localhost/mysql/replication_asynchronous_connection_failover","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover","FullyQualifiedName":"localhost/performance_schema/replication_asynchronous_connection_failover","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover","FullyQualifiedName":"localhost/mysql/replication_asynchronous_connection_failover","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover","FullyQualifiedName":"localhost/performance_schema/replication_asynchronous_connection_failover","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover","FullyQualifiedName":"localhost/mysql/replication_asynchronous_connection_failover","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover","FullyQualifiedName":"localhost/performance_schema/replication_asynchronous_connection_failover","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover","FullyQualifiedName":"localhost/mysql/replication_asynchronous_connection_failover","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover","FullyQualifiedName":"localhost/performance_schema/replication_asynchronous_connection_failover","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover","FullyQualifiedName":"localhost/mysql/replication_asynchronous_connection_failover","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover","FullyQualifiedName":"localhost/performance_schema/replication_asynchronous_connection_failover","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover","FullyQualifiedName":"localhost/mysql/replication_asynchronous_connection_failover","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover","FullyQualifiedName":"localhost/performance_schema/replication_asynchronous_connection_failover","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover_managed","FullyQualifiedName":"localhost/mysql/replication_asynchronous_connection_failover_managed","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover_managed","FullyQualifiedName":"localhost/performance_schema/replication_asynchronous_connection_failover_managed","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover_managed","FullyQualifiedName":"localhost/mysql/replication_asynchronous_connection_failover_managed","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover_managed","FullyQualifiedName":"localhost/performance_schema/replication_asynchronous_connection_failover_managed","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover_managed","FullyQualifiedName":"localhost/mysql/replication_asynchronous_connection_failover_managed","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover_managed","FullyQualifiedName":"localhost/performance_schema/replication_asynchronous_connection_failover_managed","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover_managed","FullyQualifiedName":"localhost/mysql/replication_asynchronous_connection_failover_managed","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover_managed","FullyQualifiedName":"localhost/performance_schema/replication_asynchronous_connection_failover_managed","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover_managed","FullyQualifiedName":"localhost/mysql/replication_asynchronous_connection_failover_managed","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover_managed","FullyQualifiedName":"localhost/performance_schema/replication_asynchronous_connection_failover_managed","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover_managed","FullyQualifiedName":"localhost/mysql/replication_asynchronous_connection_failover_managed","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover_managed","FullyQualifiedName":"localhost/performance_schema/replication_asynchronous_connection_failover_managed","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover_managed","FullyQualifiedName":"localhost/mysql/replication_asynchronous_connection_failover_managed","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover_managed","FullyQualifiedName":"localhost/performance_schema/replication_asynchronous_connection_failover_managed","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover_managed","FullyQualifiedName":"localhost/mysql/replication_asynchronous_connection_failover_managed","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover_managed","FullyQualifiedName":"localhost/performance_schema/replication_asynchronous_connection_failover_managed","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover_managed","FullyQualifiedName":"localhost/mysql/replication_asynchronous_connection_failover_managed","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover_managed","FullyQualifiedName":"localhost/performance_schema/replication_asynchronous_connection_failover_managed","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover_managed","FullyQualifiedName":"localhost/mysql/replication_asynchronous_connection_failover_managed","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover_managed","FullyQualifiedName":"localhost/performance_schema/replication_asynchronous_connection_failover_managed","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover_managed","FullyQualifiedName":"localhost/mysql/replication_asynchronous_connection_failover_managed","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover_managed","FullyQualifiedName":"localhost/performance_schema/replication_asynchronous_connection_failover_managed","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover_managed","FullyQualifiedName":"localhost/mysql/replication_asynchronous_connection_failover_managed","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"replication_asynchronous_connection_failover_managed","FullyQualifiedName":"localhost/performance_schema/replication_asynchronous_connection_failover_managed","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"replication_connection_configuration","FullyQualifiedName":"localhost/performance_schema/replication_connection_configuration","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"replication_connection_configuration","FullyQualifiedName":"localhost/performance_schema/replication_connection_configuration","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"replication_connection_configuration","FullyQualifiedName":"localhost/performance_schema/replication_connection_configuration","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"replication_connection_configuration","FullyQualifiedName":"localhost/performance_schema/replication_connection_configuration","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"replication_connection_configuration","FullyQualifiedName":"localhost/performance_schema/replication_connection_configuration","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"replication_connection_configuration","FullyQualifiedName":"localhost/performance_schema/replication_connection_configuration","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"replication_connection_configuration","FullyQualifiedName":"localhost/performance_schema/replication_connection_configuration","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"replication_connection_configuration","FullyQualifiedName":"localhost/performance_schema/replication_connection_configuration","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"replication_connection_configuration","FullyQualifiedName":"localhost/performance_schema/replication_connection_configuration","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"replication_connection_configuration","FullyQualifiedName":"localhost/performance_schema/replication_connection_configuration","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"replication_connection_configuration","FullyQualifiedName":"localhost/performance_schema/replication_connection_configuration","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"replication_connection_configuration","FullyQualifiedName":"localhost/performance_schema/replication_connection_configuration","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"replication_connection_status","FullyQualifiedName":"localhost/performance_schema/replication_connection_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"replication_connection_status","FullyQualifiedName":"localhost/performance_schema/replication_connection_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"replication_connection_status","FullyQualifiedName":"localhost/performance_schema/replication_connection_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"replication_connection_status","FullyQualifiedName":"localhost/performance_schema/replication_connection_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"replication_connection_status","FullyQualifiedName":"localhost/performance_schema/replication_connection_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"replication_connection_status","FullyQualifiedName":"localhost/performance_schema/replication_connection_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"replication_connection_status","FullyQualifiedName":"localhost/performance_schema/replication_connection_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"replication_connection_status","FullyQualifiedName":"localhost/performance_schema/replication_connection_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"replication_connection_status","FullyQualifiedName":"localhost/performance_schema/replication_connection_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"replication_connection_status","FullyQualifiedName":"localhost/performance_schema/replication_connection_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"replication_connection_status","FullyQualifiedName":"localhost/performance_schema/replication_connection_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"replication_connection_status","FullyQualifiedName":"localhost/performance_schema/replication_connection_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"replication_group_configuration_version","FullyQualifiedName":"localhost/mysql/replication_group_configuration_version","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"replication_group_configuration_version","FullyQualifiedName":"localhost/mysql/replication_group_configuration_version","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"replication_group_configuration_version","FullyQualifiedName":"localhost/mysql/replication_group_configuration_version","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"replication_group_configuration_version","FullyQualifiedName":"localhost/mysql/replication_group_configuration_version","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"replication_group_configuration_version","FullyQualifiedName":"localhost/mysql/replication_group_configuration_version","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"replication_group_configuration_version","FullyQualifiedName":"localhost/mysql/replication_group_configuration_version","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"replication_group_configuration_version","FullyQualifiedName":"localhost/mysql/replication_group_configuration_version","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"replication_group_configuration_version","FullyQualifiedName":"localhost/mysql/replication_group_configuration_version","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"replication_group_configuration_version","FullyQualifiedName":"localhost/mysql/replication_group_configuration_version","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"replication_group_configuration_version","FullyQualifiedName":"localhost/mysql/replication_group_configuration_version","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"replication_group_configuration_version","FullyQualifiedName":"localhost/mysql/replication_group_configuration_version","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"replication_group_configuration_version","FullyQualifiedName":"localhost/mysql/replication_group_configuration_version","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"replication_group_member_actions","FullyQualifiedName":"localhost/mysql/replication_group_member_actions","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"replication_group_member_actions","FullyQualifiedName":"localhost/mysql/replication_group_member_actions","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"replication_group_member_actions","FullyQualifiedName":"localhost/mysql/replication_group_member_actions","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"replication_group_member_actions","FullyQualifiedName":"localhost/mysql/replication_group_member_actions","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"replication_group_member_actions","FullyQualifiedName":"localhost/mysql/replication_group_member_actions","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"replication_group_member_actions","FullyQualifiedName":"localhost/mysql/replication_group_member_actions","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"replication_group_member_actions","FullyQualifiedName":"localhost/mysql/replication_group_member_actions","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"replication_group_member_actions","FullyQualifiedName":"localhost/mysql/replication_group_member_actions","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"replication_group_member_actions","FullyQualifiedName":"localhost/mysql/replication_group_member_actions","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"replication_group_member_actions","FullyQualifiedName":"localhost/mysql/replication_group_member_actions","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"replication_group_member_actions","FullyQualifiedName":"localhost/mysql/replication_group_member_actions","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"replication_group_member_actions","FullyQualifiedName":"localhost/mysql/replication_group_member_actions","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"replication_group_member_stats","FullyQualifiedName":"localhost/performance_schema/replication_group_member_stats","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"replication_group_member_stats","FullyQualifiedName":"localhost/performance_schema/replication_group_member_stats","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"replication_group_member_stats","FullyQualifiedName":"localhost/performance_schema/replication_group_member_stats","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"replication_group_member_stats","FullyQualifiedName":"localhost/performance_schema/replication_group_member_stats","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"replication_group_member_stats","FullyQualifiedName":"localhost/performance_schema/replication_group_member_stats","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"replication_group_member_stats","FullyQualifiedName":"localhost/performance_schema/replication_group_member_stats","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"replication_group_member_stats","FullyQualifiedName":"localhost/performance_schema/replication_group_member_stats","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"replication_group_member_stats","FullyQualifiedName":"localhost/performance_schema/replication_group_member_stats","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"replication_group_member_stats","FullyQualifiedName":"localhost/performance_schema/replication_group_member_stats","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"replication_group_member_stats","FullyQualifiedName":"localhost/performance_schema/replication_group_member_stats","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"replication_group_member_stats","FullyQualifiedName":"localhost/performance_schema/replication_group_member_stats","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"replication_group_member_stats","FullyQualifiedName":"localhost/performance_schema/replication_group_member_stats","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"replication_group_members","FullyQualifiedName":"localhost/performance_schema/replication_group_members","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"replication_group_members","FullyQualifiedName":"localhost/performance_schema/replication_group_members","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"replication_group_members","FullyQualifiedName":"localhost/performance_schema/replication_group_members","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"replication_group_members","FullyQualifiedName":"localhost/performance_schema/replication_group_members","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"replication_group_members","FullyQualifiedName":"localhost/performance_schema/replication_group_members","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"replication_group_members","FullyQualifiedName":"localhost/performance_schema/replication_group_members","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"replication_group_members","FullyQualifiedName":"localhost/performance_schema/replication_group_members","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"replication_group_members","FullyQualifiedName":"localhost/performance_schema/replication_group_members","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"replication_group_members","FullyQualifiedName":"localhost/performance_schema/replication_group_members","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"replication_group_members","FullyQualifiedName":"localhost/performance_schema/replication_group_members","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"replication_group_members","FullyQualifiedName":"localhost/performance_schema/replication_group_members","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"replication_group_members","FullyQualifiedName":"localhost/performance_schema/replication_group_members","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"role_edges","FullyQualifiedName":"localhost/mysql/role_edges","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"role_edges","FullyQualifiedName":"localhost/mysql/role_edges","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"role_edges","FullyQualifiedName":"localhost/mysql/role_edges","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"role_edges","FullyQualifiedName":"localhost/mysql/role_edges","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"role_edges","FullyQualifiedName":"localhost/mysql/role_edges","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"role_edges","FullyQualifiedName":"localhost/mysql/role_edges","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"role_edges","FullyQualifiedName":"localhost/mysql/role_edges","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"role_edges","FullyQualifiedName":"localhost/mysql/role_edges","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"role_edges","FullyQualifiedName":"localhost/mysql/role_edges","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"role_edges","FullyQualifiedName":"localhost/mysql/role_edges","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"role_edges","FullyQualifiedName":"localhost/mysql/role_edges","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"role_edges","FullyQualifiedName":"localhost/mysql/role_edges","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"ALLOW_NONEXISTENT_DEFINER","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"APPLICATION_PASSWORD_ADMIN","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"AUDIT_ABORT_EXEMPT","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"AUDIT_ADMIN","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"AUTHENTICATION_POLICY_ADMIN","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"BACKUP_ADMIN","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"BINLOG_ADMIN","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"BINLOG_ENCRYPTION_ADMIN","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"CLONE_ADMIN","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"CONNECTION_ADMIN","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"CREATE ROLE","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"CREATE ROUTINE","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"CREATE TABLESPACE","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"CREATE TEMPORARY TABLES","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"CREATE USER","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"DROP ROLE","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"ENCRYPTION_KEY_ADMIN","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"EVENT","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"FILE","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"FIREWALL_EXEMPT","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"FLUSH_OPTIMIZER_COSTS","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"FLUSH_STATUS","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"FLUSH_TABLES","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"FLUSH_USER_RESOURCES","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"GROUP_REPLICATION_ADMIN","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"GROUP_REPLICATION_STREAM","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"INNODB_REDO_LOG_ARCHIVE","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"INNODB_REDO_LOG_ENABLE","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"LOCK TABLES","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"PASSWORDLESS_USER_ADMIN","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"PERSIST_RO_VARIABLES_ADMIN","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"PROCESS","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"RELOAD","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"REPLICATION CLIENT","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"REPLICATION SLAVE","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"REPLICATION_APPLIER","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"REPLICATION_SLAVE_ADMIN","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"RESOURCE_GROUP_ADMIN","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"RESOURCE_GROUP_USER","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"ROLE_ADMIN","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"SENSITIVE_VARIABLES_OBSERVER","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"SERVICE_CONNECTION_ADMIN","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"SESSION_VARIABLES_ADMIN","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"SET_ANY_DEFINER","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"SHOW DATABASES","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"SHOW_ROUTINE","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"SHUTDOWN","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"SUPER","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"SYSTEM_USER","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"SYSTEM_VARIABLES_ADMIN","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"TABLE_ENCRYPTION_ADMIN","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"TELEMETRY_LOG_ADMIN","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"TRANSACTION_GTID_TAG","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null},"Permission":{"Value":"XA_RECOVER_ADMIN","Parent":null}},{"Resource":{"Name":"rwlock_instances","FullyQualifiedName":"localhost/performance_schema/rwlock_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"rwlock_instances","FullyQualifiedName":"localhost/performance_schema/rwlock_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"rwlock_instances","FullyQualifiedName":"localhost/performance_schema/rwlock_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"rwlock_instances","FullyQualifiedName":"localhost/performance_schema/rwlock_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"rwlock_instances","FullyQualifiedName":"localhost/performance_schema/rwlock_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"rwlock_instances","FullyQualifiedName":"localhost/performance_schema/rwlock_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"rwlock_instances","FullyQualifiedName":"localhost/performance_schema/rwlock_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"rwlock_instances","FullyQualifiedName":"localhost/performance_schema/rwlock_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"rwlock_instances","FullyQualifiedName":"localhost/performance_schema/rwlock_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"rwlock_instances","FullyQualifiedName":"localhost/performance_schema/rwlock_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"rwlock_instances","FullyQualifiedName":"localhost/performance_schema/rwlock_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"rwlock_instances","FullyQualifiedName":"localhost/performance_schema/rwlock_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"schema_auto_increment_columns","FullyQualifiedName":"localhost/sys/schema_auto_increment_columns","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"schema_auto_increment_columns","FullyQualifiedName":"localhost/sys/schema_auto_increment_columns","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"schema_auto_increment_columns","FullyQualifiedName":"localhost/sys/schema_auto_increment_columns","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"schema_auto_increment_columns","FullyQualifiedName":"localhost/sys/schema_auto_increment_columns","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"schema_auto_increment_columns","FullyQualifiedName":"localhost/sys/schema_auto_increment_columns","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"schema_auto_increment_columns","FullyQualifiedName":"localhost/sys/schema_auto_increment_columns","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"schema_auto_increment_columns","FullyQualifiedName":"localhost/sys/schema_auto_increment_columns","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"schema_auto_increment_columns","FullyQualifiedName":"localhost/sys/schema_auto_increment_columns","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"schema_auto_increment_columns","FullyQualifiedName":"localhost/sys/schema_auto_increment_columns","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"schema_auto_increment_columns","FullyQualifiedName":"localhost/sys/schema_auto_increment_columns","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"schema_auto_increment_columns","FullyQualifiedName":"localhost/sys/schema_auto_increment_columns","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"schema_auto_increment_columns","FullyQualifiedName":"localhost/sys/schema_auto_increment_columns","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"schema_index_statistics","FullyQualifiedName":"localhost/sys/schema_index_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"schema_index_statistics","FullyQualifiedName":"localhost/sys/schema_index_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"schema_index_statistics","FullyQualifiedName":"localhost/sys/schema_index_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"schema_index_statistics","FullyQualifiedName":"localhost/sys/schema_index_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"schema_index_statistics","FullyQualifiedName":"localhost/sys/schema_index_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"schema_index_statistics","FullyQualifiedName":"localhost/sys/schema_index_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"schema_index_statistics","FullyQualifiedName":"localhost/sys/schema_index_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"schema_index_statistics","FullyQualifiedName":"localhost/sys/schema_index_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"schema_index_statistics","FullyQualifiedName":"localhost/sys/schema_index_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"schema_index_statistics","FullyQualifiedName":"localhost/sys/schema_index_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"schema_index_statistics","FullyQualifiedName":"localhost/sys/schema_index_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"schema_index_statistics","FullyQualifiedName":"localhost/sys/schema_index_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"schema_object_overview","FullyQualifiedName":"localhost/sys/schema_object_overview","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"schema_object_overview","FullyQualifiedName":"localhost/sys/schema_object_overview","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"schema_object_overview","FullyQualifiedName":"localhost/sys/schema_object_overview","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"schema_object_overview","FullyQualifiedName":"localhost/sys/schema_object_overview","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"schema_object_overview","FullyQualifiedName":"localhost/sys/schema_object_overview","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"schema_object_overview","FullyQualifiedName":"localhost/sys/schema_object_overview","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"schema_object_overview","FullyQualifiedName":"localhost/sys/schema_object_overview","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"schema_object_overview","FullyQualifiedName":"localhost/sys/schema_object_overview","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"schema_object_overview","FullyQualifiedName":"localhost/sys/schema_object_overview","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"schema_object_overview","FullyQualifiedName":"localhost/sys/schema_object_overview","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"schema_object_overview","FullyQualifiedName":"localhost/sys/schema_object_overview","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"schema_object_overview","FullyQualifiedName":"localhost/sys/schema_object_overview","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"schema_redundant_indexes","FullyQualifiedName":"localhost/sys/schema_redundant_indexes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"schema_redundant_indexes","FullyQualifiedName":"localhost/sys/schema_redundant_indexes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"schema_redundant_indexes","FullyQualifiedName":"localhost/sys/schema_redundant_indexes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"schema_redundant_indexes","FullyQualifiedName":"localhost/sys/schema_redundant_indexes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"schema_redundant_indexes","FullyQualifiedName":"localhost/sys/schema_redundant_indexes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"schema_redundant_indexes","FullyQualifiedName":"localhost/sys/schema_redundant_indexes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"schema_redundant_indexes","FullyQualifiedName":"localhost/sys/schema_redundant_indexes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"schema_redundant_indexes","FullyQualifiedName":"localhost/sys/schema_redundant_indexes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"schema_redundant_indexes","FullyQualifiedName":"localhost/sys/schema_redundant_indexes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"schema_redundant_indexes","FullyQualifiedName":"localhost/sys/schema_redundant_indexes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"schema_redundant_indexes","FullyQualifiedName":"localhost/sys/schema_redundant_indexes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"schema_redundant_indexes","FullyQualifiedName":"localhost/sys/schema_redundant_indexes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"schema_table_lock_waits","FullyQualifiedName":"localhost/sys/schema_table_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"schema_table_lock_waits","FullyQualifiedName":"localhost/sys/schema_table_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"schema_table_lock_waits","FullyQualifiedName":"localhost/sys/schema_table_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"schema_table_lock_waits","FullyQualifiedName":"localhost/sys/schema_table_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"schema_table_lock_waits","FullyQualifiedName":"localhost/sys/schema_table_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"schema_table_lock_waits","FullyQualifiedName":"localhost/sys/schema_table_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"schema_table_lock_waits","FullyQualifiedName":"localhost/sys/schema_table_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"schema_table_lock_waits","FullyQualifiedName":"localhost/sys/schema_table_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"schema_table_lock_waits","FullyQualifiedName":"localhost/sys/schema_table_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"schema_table_lock_waits","FullyQualifiedName":"localhost/sys/schema_table_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"schema_table_lock_waits","FullyQualifiedName":"localhost/sys/schema_table_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"schema_table_lock_waits","FullyQualifiedName":"localhost/sys/schema_table_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"schema_table_statistics","FullyQualifiedName":"localhost/sys/schema_table_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"schema_table_statistics","FullyQualifiedName":"localhost/sys/schema_table_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"schema_table_statistics","FullyQualifiedName":"localhost/sys/schema_table_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"schema_table_statistics","FullyQualifiedName":"localhost/sys/schema_table_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"schema_table_statistics","FullyQualifiedName":"localhost/sys/schema_table_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"schema_table_statistics","FullyQualifiedName":"localhost/sys/schema_table_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"schema_table_statistics","FullyQualifiedName":"localhost/sys/schema_table_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"schema_table_statistics","FullyQualifiedName":"localhost/sys/schema_table_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"schema_table_statistics","FullyQualifiedName":"localhost/sys/schema_table_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"schema_table_statistics","FullyQualifiedName":"localhost/sys/schema_table_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"schema_table_statistics","FullyQualifiedName":"localhost/sys/schema_table_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"schema_table_statistics","FullyQualifiedName":"localhost/sys/schema_table_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"schema_table_statistics_with_buffer","FullyQualifiedName":"localhost/sys/schema_table_statistics_with_buffer","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"schema_table_statistics_with_buffer","FullyQualifiedName":"localhost/sys/schema_table_statistics_with_buffer","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"schema_table_statistics_with_buffer","FullyQualifiedName":"localhost/sys/schema_table_statistics_with_buffer","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"schema_table_statistics_with_buffer","FullyQualifiedName":"localhost/sys/schema_table_statistics_with_buffer","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"schema_table_statistics_with_buffer","FullyQualifiedName":"localhost/sys/schema_table_statistics_with_buffer","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"schema_table_statistics_with_buffer","FullyQualifiedName":"localhost/sys/schema_table_statistics_with_buffer","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"schema_table_statistics_with_buffer","FullyQualifiedName":"localhost/sys/schema_table_statistics_with_buffer","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"schema_table_statistics_with_buffer","FullyQualifiedName":"localhost/sys/schema_table_statistics_with_buffer","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"schema_table_statistics_with_buffer","FullyQualifiedName":"localhost/sys/schema_table_statistics_with_buffer","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"schema_table_statistics_with_buffer","FullyQualifiedName":"localhost/sys/schema_table_statistics_with_buffer","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"schema_table_statistics_with_buffer","FullyQualifiedName":"localhost/sys/schema_table_statistics_with_buffer","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"schema_table_statistics_with_buffer","FullyQualifiedName":"localhost/sys/schema_table_statistics_with_buffer","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"schema_tables_with_full_table_scans","FullyQualifiedName":"localhost/sys/schema_tables_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"schema_tables_with_full_table_scans","FullyQualifiedName":"localhost/sys/schema_tables_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"schema_tables_with_full_table_scans","FullyQualifiedName":"localhost/sys/schema_tables_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"schema_tables_with_full_table_scans","FullyQualifiedName":"localhost/sys/schema_tables_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"schema_tables_with_full_table_scans","FullyQualifiedName":"localhost/sys/schema_tables_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"schema_tables_with_full_table_scans","FullyQualifiedName":"localhost/sys/schema_tables_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"schema_tables_with_full_table_scans","FullyQualifiedName":"localhost/sys/schema_tables_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"schema_tables_with_full_table_scans","FullyQualifiedName":"localhost/sys/schema_tables_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"schema_tables_with_full_table_scans","FullyQualifiedName":"localhost/sys/schema_tables_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"schema_tables_with_full_table_scans","FullyQualifiedName":"localhost/sys/schema_tables_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"schema_tables_with_full_table_scans","FullyQualifiedName":"localhost/sys/schema_tables_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"schema_tables_with_full_table_scans","FullyQualifiedName":"localhost/sys/schema_tables_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"schema_unused_indexes","FullyQualifiedName":"localhost/sys/schema_unused_indexes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"schema_unused_indexes","FullyQualifiedName":"localhost/sys/schema_unused_indexes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"schema_unused_indexes","FullyQualifiedName":"localhost/sys/schema_unused_indexes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"schema_unused_indexes","FullyQualifiedName":"localhost/sys/schema_unused_indexes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"schema_unused_indexes","FullyQualifiedName":"localhost/sys/schema_unused_indexes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"schema_unused_indexes","FullyQualifiedName":"localhost/sys/schema_unused_indexes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"schema_unused_indexes","FullyQualifiedName":"localhost/sys/schema_unused_indexes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"schema_unused_indexes","FullyQualifiedName":"localhost/sys/schema_unused_indexes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"schema_unused_indexes","FullyQualifiedName":"localhost/sys/schema_unused_indexes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"schema_unused_indexes","FullyQualifiedName":"localhost/sys/schema_unused_indexes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"schema_unused_indexes","FullyQualifiedName":"localhost/sys/schema_unused_indexes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"schema_unused_indexes","FullyQualifiedName":"localhost/sys/schema_unused_indexes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"server_cost","FullyQualifiedName":"localhost/mysql/server_cost","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"server_cost","FullyQualifiedName":"localhost/mysql/server_cost","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"server_cost","FullyQualifiedName":"localhost/mysql/server_cost","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"server_cost","FullyQualifiedName":"localhost/mysql/server_cost","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"server_cost","FullyQualifiedName":"localhost/mysql/server_cost","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"server_cost","FullyQualifiedName":"localhost/mysql/server_cost","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"server_cost","FullyQualifiedName":"localhost/mysql/server_cost","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"server_cost","FullyQualifiedName":"localhost/mysql/server_cost","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"server_cost","FullyQualifiedName":"localhost/mysql/server_cost","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"server_cost","FullyQualifiedName":"localhost/mysql/server_cost","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"server_cost","FullyQualifiedName":"localhost/mysql/server_cost","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"server_cost","FullyQualifiedName":"localhost/mysql/server_cost","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"servers","FullyQualifiedName":"localhost/mysql/servers","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"servers","FullyQualifiedName":"localhost/mysql/servers","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"servers","FullyQualifiedName":"localhost/mysql/servers","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"servers","FullyQualifiedName":"localhost/mysql/servers","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"servers","FullyQualifiedName":"localhost/mysql/servers","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"servers","FullyQualifiedName":"localhost/mysql/servers","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"servers","FullyQualifiedName":"localhost/mysql/servers","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"servers","FullyQualifiedName":"localhost/mysql/servers","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"servers","FullyQualifiedName":"localhost/mysql/servers","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"servers","FullyQualifiedName":"localhost/mysql/servers","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"servers","FullyQualifiedName":"localhost/mysql/servers","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"servers","FullyQualifiedName":"localhost/mysql/servers","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"session","FullyQualifiedName":"localhost/sys/session","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"session","FullyQualifiedName":"localhost/sys/session","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"session","FullyQualifiedName":"localhost/sys/session","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"session","FullyQualifiedName":"localhost/sys/session","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"session","FullyQualifiedName":"localhost/sys/session","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"session","FullyQualifiedName":"localhost/sys/session","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"session","FullyQualifiedName":"localhost/sys/session","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"session","FullyQualifiedName":"localhost/sys/session","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"session","FullyQualifiedName":"localhost/sys/session","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"session","FullyQualifiedName":"localhost/sys/session","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"session","FullyQualifiedName":"localhost/sys/session","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"session","FullyQualifiedName":"localhost/sys/session","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"session_account_connect_attrs","FullyQualifiedName":"localhost/performance_schema/session_account_connect_attrs","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"session_account_connect_attrs","FullyQualifiedName":"localhost/performance_schema/session_account_connect_attrs","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"session_account_connect_attrs","FullyQualifiedName":"localhost/performance_schema/session_account_connect_attrs","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"session_account_connect_attrs","FullyQualifiedName":"localhost/performance_schema/session_account_connect_attrs","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"session_account_connect_attrs","FullyQualifiedName":"localhost/performance_schema/session_account_connect_attrs","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"session_account_connect_attrs","FullyQualifiedName":"localhost/performance_schema/session_account_connect_attrs","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"session_account_connect_attrs","FullyQualifiedName":"localhost/performance_schema/session_account_connect_attrs","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"session_account_connect_attrs","FullyQualifiedName":"localhost/performance_schema/session_account_connect_attrs","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"session_account_connect_attrs","FullyQualifiedName":"localhost/performance_schema/session_account_connect_attrs","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"session_account_connect_attrs","FullyQualifiedName":"localhost/performance_schema/session_account_connect_attrs","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"session_account_connect_attrs","FullyQualifiedName":"localhost/performance_schema/session_account_connect_attrs","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"session_account_connect_attrs","FullyQualifiedName":"localhost/performance_schema/session_account_connect_attrs","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"session_connect_attrs","FullyQualifiedName":"localhost/performance_schema/session_connect_attrs","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"session_connect_attrs","FullyQualifiedName":"localhost/performance_schema/session_connect_attrs","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"session_connect_attrs","FullyQualifiedName":"localhost/performance_schema/session_connect_attrs","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"session_connect_attrs","FullyQualifiedName":"localhost/performance_schema/session_connect_attrs","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"session_connect_attrs","FullyQualifiedName":"localhost/performance_schema/session_connect_attrs","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"session_connect_attrs","FullyQualifiedName":"localhost/performance_schema/session_connect_attrs","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"session_connect_attrs","FullyQualifiedName":"localhost/performance_schema/session_connect_attrs","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"session_connect_attrs","FullyQualifiedName":"localhost/performance_schema/session_connect_attrs","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"session_connect_attrs","FullyQualifiedName":"localhost/performance_schema/session_connect_attrs","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"session_connect_attrs","FullyQualifiedName":"localhost/performance_schema/session_connect_attrs","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"session_connect_attrs","FullyQualifiedName":"localhost/performance_schema/session_connect_attrs","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"session_connect_attrs","FullyQualifiedName":"localhost/performance_schema/session_connect_attrs","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"session_ssl_status","FullyQualifiedName":"localhost/sys/session_ssl_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"session_ssl_status","FullyQualifiedName":"localhost/sys/session_ssl_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"session_ssl_status","FullyQualifiedName":"localhost/sys/session_ssl_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"session_ssl_status","FullyQualifiedName":"localhost/sys/session_ssl_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"session_ssl_status","FullyQualifiedName":"localhost/sys/session_ssl_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"session_ssl_status","FullyQualifiedName":"localhost/sys/session_ssl_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"session_ssl_status","FullyQualifiedName":"localhost/sys/session_ssl_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"session_ssl_status","FullyQualifiedName":"localhost/sys/session_ssl_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"session_ssl_status","FullyQualifiedName":"localhost/sys/session_ssl_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"session_ssl_status","FullyQualifiedName":"localhost/sys/session_ssl_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"session_ssl_status","FullyQualifiedName":"localhost/sys/session_ssl_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"session_ssl_status","FullyQualifiedName":"localhost/sys/session_ssl_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"session_status","FullyQualifiedName":"localhost/performance_schema/session_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"session_status","FullyQualifiedName":"localhost/performance_schema/session_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"session_status","FullyQualifiedName":"localhost/performance_schema/session_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"session_status","FullyQualifiedName":"localhost/performance_schema/session_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"session_status","FullyQualifiedName":"localhost/performance_schema/session_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"session_status","FullyQualifiedName":"localhost/performance_schema/session_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"session_status","FullyQualifiedName":"localhost/performance_schema/session_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"session_status","FullyQualifiedName":"localhost/performance_schema/session_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"session_status","FullyQualifiedName":"localhost/performance_schema/session_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"session_status","FullyQualifiedName":"localhost/performance_schema/session_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"session_status","FullyQualifiedName":"localhost/performance_schema/session_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"session_status","FullyQualifiedName":"localhost/performance_schema/session_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"session_variables","FullyQualifiedName":"localhost/performance_schema/session_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"session_variables","FullyQualifiedName":"localhost/performance_schema/session_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"session_variables","FullyQualifiedName":"localhost/performance_schema/session_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"session_variables","FullyQualifiedName":"localhost/performance_schema/session_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"session_variables","FullyQualifiedName":"localhost/performance_schema/session_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"session_variables","FullyQualifiedName":"localhost/performance_schema/session_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"session_variables","FullyQualifiedName":"localhost/performance_schema/session_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"session_variables","FullyQualifiedName":"localhost/performance_schema/session_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"session_variables","FullyQualifiedName":"localhost/performance_schema/session_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"session_variables","FullyQualifiedName":"localhost/performance_schema/session_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"session_variables","FullyQualifiedName":"localhost/performance_schema/session_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"session_variables","FullyQualifiedName":"localhost/performance_schema/session_variables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"setup_actors","FullyQualifiedName":"localhost/performance_schema/setup_actors","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"setup_actors","FullyQualifiedName":"localhost/performance_schema/setup_actors","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"setup_actors","FullyQualifiedName":"localhost/performance_schema/setup_actors","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"setup_actors","FullyQualifiedName":"localhost/performance_schema/setup_actors","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"setup_actors","FullyQualifiedName":"localhost/performance_schema/setup_actors","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"setup_actors","FullyQualifiedName":"localhost/performance_schema/setup_actors","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"setup_actors","FullyQualifiedName":"localhost/performance_schema/setup_actors","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"setup_actors","FullyQualifiedName":"localhost/performance_schema/setup_actors","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"setup_actors","FullyQualifiedName":"localhost/performance_schema/setup_actors","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"setup_actors","FullyQualifiedName":"localhost/performance_schema/setup_actors","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"setup_actors","FullyQualifiedName":"localhost/performance_schema/setup_actors","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"setup_actors","FullyQualifiedName":"localhost/performance_schema/setup_actors","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"setup_consumers","FullyQualifiedName":"localhost/performance_schema/setup_consumers","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"setup_consumers","FullyQualifiedName":"localhost/performance_schema/setup_consumers","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"setup_consumers","FullyQualifiedName":"localhost/performance_schema/setup_consumers","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"setup_consumers","FullyQualifiedName":"localhost/performance_schema/setup_consumers","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"setup_consumers","FullyQualifiedName":"localhost/performance_schema/setup_consumers","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"setup_consumers","FullyQualifiedName":"localhost/performance_schema/setup_consumers","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"setup_consumers","FullyQualifiedName":"localhost/performance_schema/setup_consumers","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"setup_consumers","FullyQualifiedName":"localhost/performance_schema/setup_consumers","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"setup_consumers","FullyQualifiedName":"localhost/performance_schema/setup_consumers","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"setup_consumers","FullyQualifiedName":"localhost/performance_schema/setup_consumers","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"setup_consumers","FullyQualifiedName":"localhost/performance_schema/setup_consumers","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"setup_consumers","FullyQualifiedName":"localhost/performance_schema/setup_consumers","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"setup_instruments","FullyQualifiedName":"localhost/performance_schema/setup_instruments","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"setup_instruments","FullyQualifiedName":"localhost/performance_schema/setup_instruments","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"setup_instruments","FullyQualifiedName":"localhost/performance_schema/setup_instruments","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"setup_instruments","FullyQualifiedName":"localhost/performance_schema/setup_instruments","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"setup_instruments","FullyQualifiedName":"localhost/performance_schema/setup_instruments","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"setup_instruments","FullyQualifiedName":"localhost/performance_schema/setup_instruments","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"setup_instruments","FullyQualifiedName":"localhost/performance_schema/setup_instruments","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"setup_instruments","FullyQualifiedName":"localhost/performance_schema/setup_instruments","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"setup_instruments","FullyQualifiedName":"localhost/performance_schema/setup_instruments","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"setup_instruments","FullyQualifiedName":"localhost/performance_schema/setup_instruments","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"setup_instruments","FullyQualifiedName":"localhost/performance_schema/setup_instruments","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"setup_instruments","FullyQualifiedName":"localhost/performance_schema/setup_instruments","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"setup_meters","FullyQualifiedName":"localhost/performance_schema/setup_meters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"setup_meters","FullyQualifiedName":"localhost/performance_schema/setup_meters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"setup_meters","FullyQualifiedName":"localhost/performance_schema/setup_meters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"setup_meters","FullyQualifiedName":"localhost/performance_schema/setup_meters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"setup_meters","FullyQualifiedName":"localhost/performance_schema/setup_meters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"setup_meters","FullyQualifiedName":"localhost/performance_schema/setup_meters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"setup_meters","FullyQualifiedName":"localhost/performance_schema/setup_meters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"setup_meters","FullyQualifiedName":"localhost/performance_schema/setup_meters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"setup_meters","FullyQualifiedName":"localhost/performance_schema/setup_meters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"setup_meters","FullyQualifiedName":"localhost/performance_schema/setup_meters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"setup_meters","FullyQualifiedName":"localhost/performance_schema/setup_meters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"setup_meters","FullyQualifiedName":"localhost/performance_schema/setup_meters","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"setup_metrics","FullyQualifiedName":"localhost/performance_schema/setup_metrics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"setup_metrics","FullyQualifiedName":"localhost/performance_schema/setup_metrics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"setup_metrics","FullyQualifiedName":"localhost/performance_schema/setup_metrics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"setup_metrics","FullyQualifiedName":"localhost/performance_schema/setup_metrics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"setup_metrics","FullyQualifiedName":"localhost/performance_schema/setup_metrics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"setup_metrics","FullyQualifiedName":"localhost/performance_schema/setup_metrics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"setup_metrics","FullyQualifiedName":"localhost/performance_schema/setup_metrics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"setup_metrics","FullyQualifiedName":"localhost/performance_schema/setup_metrics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"setup_metrics","FullyQualifiedName":"localhost/performance_schema/setup_metrics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"setup_metrics","FullyQualifiedName":"localhost/performance_schema/setup_metrics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"setup_metrics","FullyQualifiedName":"localhost/performance_schema/setup_metrics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"setup_metrics","FullyQualifiedName":"localhost/performance_schema/setup_metrics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"setup_objects","FullyQualifiedName":"localhost/performance_schema/setup_objects","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"setup_objects","FullyQualifiedName":"localhost/performance_schema/setup_objects","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"setup_objects","FullyQualifiedName":"localhost/performance_schema/setup_objects","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"setup_objects","FullyQualifiedName":"localhost/performance_schema/setup_objects","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"setup_objects","FullyQualifiedName":"localhost/performance_schema/setup_objects","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"setup_objects","FullyQualifiedName":"localhost/performance_schema/setup_objects","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"setup_objects","FullyQualifiedName":"localhost/performance_schema/setup_objects","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"setup_objects","FullyQualifiedName":"localhost/performance_schema/setup_objects","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"setup_objects","FullyQualifiedName":"localhost/performance_schema/setup_objects","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"setup_objects","FullyQualifiedName":"localhost/performance_schema/setup_objects","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"setup_objects","FullyQualifiedName":"localhost/performance_schema/setup_objects","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"setup_objects","FullyQualifiedName":"localhost/performance_schema/setup_objects","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"setup_threads","FullyQualifiedName":"localhost/performance_schema/setup_threads","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"setup_threads","FullyQualifiedName":"localhost/performance_schema/setup_threads","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"setup_threads","FullyQualifiedName":"localhost/performance_schema/setup_threads","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"setup_threads","FullyQualifiedName":"localhost/performance_schema/setup_threads","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"setup_threads","FullyQualifiedName":"localhost/performance_schema/setup_threads","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"setup_threads","FullyQualifiedName":"localhost/performance_schema/setup_threads","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"setup_threads","FullyQualifiedName":"localhost/performance_schema/setup_threads","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"setup_threads","FullyQualifiedName":"localhost/performance_schema/setup_threads","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"setup_threads","FullyQualifiedName":"localhost/performance_schema/setup_threads","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"setup_threads","FullyQualifiedName":"localhost/performance_schema/setup_threads","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"setup_threads","FullyQualifiedName":"localhost/performance_schema/setup_threads","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"setup_threads","FullyQualifiedName":"localhost/performance_schema/setup_threads","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"slave_master_info","FullyQualifiedName":"localhost/mysql/slave_master_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"slave_master_info","FullyQualifiedName":"localhost/mysql/slave_master_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"slave_master_info","FullyQualifiedName":"localhost/mysql/slave_master_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"slave_master_info","FullyQualifiedName":"localhost/mysql/slave_master_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"slave_master_info","FullyQualifiedName":"localhost/mysql/slave_master_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"slave_master_info","FullyQualifiedName":"localhost/mysql/slave_master_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"slave_master_info","FullyQualifiedName":"localhost/mysql/slave_master_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"slave_master_info","FullyQualifiedName":"localhost/mysql/slave_master_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"slave_master_info","FullyQualifiedName":"localhost/mysql/slave_master_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"slave_master_info","FullyQualifiedName":"localhost/mysql/slave_master_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"slave_master_info","FullyQualifiedName":"localhost/mysql/slave_master_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"slave_master_info","FullyQualifiedName":"localhost/mysql/slave_master_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"slave_relay_log_info","FullyQualifiedName":"localhost/mysql/slave_relay_log_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"slave_relay_log_info","FullyQualifiedName":"localhost/mysql/slave_relay_log_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"slave_relay_log_info","FullyQualifiedName":"localhost/mysql/slave_relay_log_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"slave_relay_log_info","FullyQualifiedName":"localhost/mysql/slave_relay_log_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"slave_relay_log_info","FullyQualifiedName":"localhost/mysql/slave_relay_log_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"slave_relay_log_info","FullyQualifiedName":"localhost/mysql/slave_relay_log_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"slave_relay_log_info","FullyQualifiedName":"localhost/mysql/slave_relay_log_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"slave_relay_log_info","FullyQualifiedName":"localhost/mysql/slave_relay_log_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"slave_relay_log_info","FullyQualifiedName":"localhost/mysql/slave_relay_log_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"slave_relay_log_info","FullyQualifiedName":"localhost/mysql/slave_relay_log_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"slave_relay_log_info","FullyQualifiedName":"localhost/mysql/slave_relay_log_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"slave_relay_log_info","FullyQualifiedName":"localhost/mysql/slave_relay_log_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"slave_worker_info","FullyQualifiedName":"localhost/mysql/slave_worker_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"slave_worker_info","FullyQualifiedName":"localhost/mysql/slave_worker_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"slave_worker_info","FullyQualifiedName":"localhost/mysql/slave_worker_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"slave_worker_info","FullyQualifiedName":"localhost/mysql/slave_worker_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"slave_worker_info","FullyQualifiedName":"localhost/mysql/slave_worker_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"slave_worker_info","FullyQualifiedName":"localhost/mysql/slave_worker_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"slave_worker_info","FullyQualifiedName":"localhost/mysql/slave_worker_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"slave_worker_info","FullyQualifiedName":"localhost/mysql/slave_worker_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"slave_worker_info","FullyQualifiedName":"localhost/mysql/slave_worker_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"slave_worker_info","FullyQualifiedName":"localhost/mysql/slave_worker_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"slave_worker_info","FullyQualifiedName":"localhost/mysql/slave_worker_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"slave_worker_info","FullyQualifiedName":"localhost/mysql/slave_worker_info","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"slow_log","FullyQualifiedName":"localhost/mysql/slow_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"slow_log","FullyQualifiedName":"localhost/mysql/slow_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"slow_log","FullyQualifiedName":"localhost/mysql/slow_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"slow_log","FullyQualifiedName":"localhost/mysql/slow_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"slow_log","FullyQualifiedName":"localhost/mysql/slow_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"slow_log","FullyQualifiedName":"localhost/mysql/slow_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"slow_log","FullyQualifiedName":"localhost/mysql/slow_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"slow_log","FullyQualifiedName":"localhost/mysql/slow_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"slow_log","FullyQualifiedName":"localhost/mysql/slow_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"slow_log","FullyQualifiedName":"localhost/mysql/slow_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"slow_log","FullyQualifiedName":"localhost/mysql/slow_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"slow_log","FullyQualifiedName":"localhost/mysql/slow_log","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"socket_instances","FullyQualifiedName":"localhost/performance_schema/socket_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"socket_instances","FullyQualifiedName":"localhost/performance_schema/socket_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"socket_instances","FullyQualifiedName":"localhost/performance_schema/socket_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"socket_instances","FullyQualifiedName":"localhost/performance_schema/socket_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"socket_instances","FullyQualifiedName":"localhost/performance_schema/socket_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"socket_instances","FullyQualifiedName":"localhost/performance_schema/socket_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"socket_instances","FullyQualifiedName":"localhost/performance_schema/socket_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"socket_instances","FullyQualifiedName":"localhost/performance_schema/socket_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"socket_instances","FullyQualifiedName":"localhost/performance_schema/socket_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"socket_instances","FullyQualifiedName":"localhost/performance_schema/socket_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"socket_instances","FullyQualifiedName":"localhost/performance_schema/socket_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"socket_instances","FullyQualifiedName":"localhost/performance_schema/socket_instances","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"socket_summary_by_event_name","FullyQualifiedName":"localhost/performance_schema/socket_summary_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"socket_summary_by_event_name","FullyQualifiedName":"localhost/performance_schema/socket_summary_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"socket_summary_by_event_name","FullyQualifiedName":"localhost/performance_schema/socket_summary_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"socket_summary_by_event_name","FullyQualifiedName":"localhost/performance_schema/socket_summary_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"socket_summary_by_event_name","FullyQualifiedName":"localhost/performance_schema/socket_summary_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"socket_summary_by_event_name","FullyQualifiedName":"localhost/performance_schema/socket_summary_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"socket_summary_by_event_name","FullyQualifiedName":"localhost/performance_schema/socket_summary_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"socket_summary_by_event_name","FullyQualifiedName":"localhost/performance_schema/socket_summary_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"socket_summary_by_event_name","FullyQualifiedName":"localhost/performance_schema/socket_summary_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"socket_summary_by_event_name","FullyQualifiedName":"localhost/performance_schema/socket_summary_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"socket_summary_by_event_name","FullyQualifiedName":"localhost/performance_schema/socket_summary_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"socket_summary_by_event_name","FullyQualifiedName":"localhost/performance_schema/socket_summary_by_event_name","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"socket_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/socket_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"socket_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/socket_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"socket_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/socket_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"socket_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/socket_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"socket_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/socket_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"socket_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/socket_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"socket_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/socket_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"socket_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/socket_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"socket_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/socket_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"socket_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/socket_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"socket_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/socket_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"socket_summary_by_instance","FullyQualifiedName":"localhost/performance_schema/socket_summary_by_instance","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"statement_analysis","FullyQualifiedName":"localhost/sys/statement_analysis","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"statement_analysis","FullyQualifiedName":"localhost/sys/statement_analysis","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"statement_analysis","FullyQualifiedName":"localhost/sys/statement_analysis","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"statement_analysis","FullyQualifiedName":"localhost/sys/statement_analysis","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"statement_analysis","FullyQualifiedName":"localhost/sys/statement_analysis","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"statement_analysis","FullyQualifiedName":"localhost/sys/statement_analysis","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"statement_analysis","FullyQualifiedName":"localhost/sys/statement_analysis","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"statement_analysis","FullyQualifiedName":"localhost/sys/statement_analysis","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"statement_analysis","FullyQualifiedName":"localhost/sys/statement_analysis","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"statement_analysis","FullyQualifiedName":"localhost/sys/statement_analysis","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"statement_analysis","FullyQualifiedName":"localhost/sys/statement_analysis","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"statement_analysis","FullyQualifiedName":"localhost/sys/statement_analysis","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"statement_performance_analyzer","FullyQualifiedName":"localhost/sys/statement_performance_analyzer","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"statement_performance_analyzer","FullyQualifiedName":"localhost/sys/statement_performance_analyzer","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"statements_with_errors_or_warnings","FullyQualifiedName":"localhost/sys/statements_with_errors_or_warnings","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"statements_with_errors_or_warnings","FullyQualifiedName":"localhost/sys/statements_with_errors_or_warnings","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"statements_with_errors_or_warnings","FullyQualifiedName":"localhost/sys/statements_with_errors_or_warnings","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"statements_with_errors_or_warnings","FullyQualifiedName":"localhost/sys/statements_with_errors_or_warnings","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"statements_with_errors_or_warnings","FullyQualifiedName":"localhost/sys/statements_with_errors_or_warnings","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"statements_with_errors_or_warnings","FullyQualifiedName":"localhost/sys/statements_with_errors_or_warnings","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"statements_with_errors_or_warnings","FullyQualifiedName":"localhost/sys/statements_with_errors_or_warnings","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"statements_with_errors_or_warnings","FullyQualifiedName":"localhost/sys/statements_with_errors_or_warnings","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"statements_with_errors_or_warnings","FullyQualifiedName":"localhost/sys/statements_with_errors_or_warnings","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"statements_with_errors_or_warnings","FullyQualifiedName":"localhost/sys/statements_with_errors_or_warnings","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"statements_with_errors_or_warnings","FullyQualifiedName":"localhost/sys/statements_with_errors_or_warnings","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"statements_with_errors_or_warnings","FullyQualifiedName":"localhost/sys/statements_with_errors_or_warnings","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"statements_with_full_table_scans","FullyQualifiedName":"localhost/sys/statements_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"statements_with_full_table_scans","FullyQualifiedName":"localhost/sys/statements_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"statements_with_full_table_scans","FullyQualifiedName":"localhost/sys/statements_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"statements_with_full_table_scans","FullyQualifiedName":"localhost/sys/statements_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"statements_with_full_table_scans","FullyQualifiedName":"localhost/sys/statements_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"statements_with_full_table_scans","FullyQualifiedName":"localhost/sys/statements_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"statements_with_full_table_scans","FullyQualifiedName":"localhost/sys/statements_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"statements_with_full_table_scans","FullyQualifiedName":"localhost/sys/statements_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"statements_with_full_table_scans","FullyQualifiedName":"localhost/sys/statements_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"statements_with_full_table_scans","FullyQualifiedName":"localhost/sys/statements_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"statements_with_full_table_scans","FullyQualifiedName":"localhost/sys/statements_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"statements_with_full_table_scans","FullyQualifiedName":"localhost/sys/statements_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"statements_with_runtimes_in_95th_percentile","FullyQualifiedName":"localhost/sys/statements_with_runtimes_in_95th_percentile","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"statements_with_runtimes_in_95th_percentile","FullyQualifiedName":"localhost/sys/statements_with_runtimes_in_95th_percentile","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"statements_with_runtimes_in_95th_percentile","FullyQualifiedName":"localhost/sys/statements_with_runtimes_in_95th_percentile","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"statements_with_runtimes_in_95th_percentile","FullyQualifiedName":"localhost/sys/statements_with_runtimes_in_95th_percentile","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"statements_with_runtimes_in_95th_percentile","FullyQualifiedName":"localhost/sys/statements_with_runtimes_in_95th_percentile","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"statements_with_runtimes_in_95th_percentile","FullyQualifiedName":"localhost/sys/statements_with_runtimes_in_95th_percentile","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"statements_with_runtimes_in_95th_percentile","FullyQualifiedName":"localhost/sys/statements_with_runtimes_in_95th_percentile","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"statements_with_runtimes_in_95th_percentile","FullyQualifiedName":"localhost/sys/statements_with_runtimes_in_95th_percentile","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"statements_with_runtimes_in_95th_percentile","FullyQualifiedName":"localhost/sys/statements_with_runtimes_in_95th_percentile","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"statements_with_runtimes_in_95th_percentile","FullyQualifiedName":"localhost/sys/statements_with_runtimes_in_95th_percentile","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"statements_with_runtimes_in_95th_percentile","FullyQualifiedName":"localhost/sys/statements_with_runtimes_in_95th_percentile","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"statements_with_runtimes_in_95th_percentile","FullyQualifiedName":"localhost/sys/statements_with_runtimes_in_95th_percentile","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"statements_with_sorting","FullyQualifiedName":"localhost/sys/statements_with_sorting","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"statements_with_sorting","FullyQualifiedName":"localhost/sys/statements_with_sorting","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"statements_with_sorting","FullyQualifiedName":"localhost/sys/statements_with_sorting","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"statements_with_sorting","FullyQualifiedName":"localhost/sys/statements_with_sorting","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"statements_with_sorting","FullyQualifiedName":"localhost/sys/statements_with_sorting","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"statements_with_sorting","FullyQualifiedName":"localhost/sys/statements_with_sorting","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"statements_with_sorting","FullyQualifiedName":"localhost/sys/statements_with_sorting","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"statements_with_sorting","FullyQualifiedName":"localhost/sys/statements_with_sorting","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"statements_with_sorting","FullyQualifiedName":"localhost/sys/statements_with_sorting","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"statements_with_sorting","FullyQualifiedName":"localhost/sys/statements_with_sorting","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"statements_with_sorting","FullyQualifiedName":"localhost/sys/statements_with_sorting","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"statements_with_sorting","FullyQualifiedName":"localhost/sys/statements_with_sorting","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"statements_with_temp_tables","FullyQualifiedName":"localhost/sys/statements_with_temp_tables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"statements_with_temp_tables","FullyQualifiedName":"localhost/sys/statements_with_temp_tables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"statements_with_temp_tables","FullyQualifiedName":"localhost/sys/statements_with_temp_tables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"statements_with_temp_tables","FullyQualifiedName":"localhost/sys/statements_with_temp_tables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"statements_with_temp_tables","FullyQualifiedName":"localhost/sys/statements_with_temp_tables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"statements_with_temp_tables","FullyQualifiedName":"localhost/sys/statements_with_temp_tables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"statements_with_temp_tables","FullyQualifiedName":"localhost/sys/statements_with_temp_tables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"statements_with_temp_tables","FullyQualifiedName":"localhost/sys/statements_with_temp_tables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"statements_with_temp_tables","FullyQualifiedName":"localhost/sys/statements_with_temp_tables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"statements_with_temp_tables","FullyQualifiedName":"localhost/sys/statements_with_temp_tables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"statements_with_temp_tables","FullyQualifiedName":"localhost/sys/statements_with_temp_tables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"statements_with_temp_tables","FullyQualifiedName":"localhost/sys/statements_with_temp_tables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"status_by_account","FullyQualifiedName":"localhost/performance_schema/status_by_account","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"status_by_account","FullyQualifiedName":"localhost/performance_schema/status_by_account","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"status_by_account","FullyQualifiedName":"localhost/performance_schema/status_by_account","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"status_by_account","FullyQualifiedName":"localhost/performance_schema/status_by_account","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"status_by_account","FullyQualifiedName":"localhost/performance_schema/status_by_account","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"status_by_account","FullyQualifiedName":"localhost/performance_schema/status_by_account","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"status_by_account","FullyQualifiedName":"localhost/performance_schema/status_by_account","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"status_by_account","FullyQualifiedName":"localhost/performance_schema/status_by_account","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"status_by_account","FullyQualifiedName":"localhost/performance_schema/status_by_account","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"status_by_account","FullyQualifiedName":"localhost/performance_schema/status_by_account","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"status_by_account","FullyQualifiedName":"localhost/performance_schema/status_by_account","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"status_by_account","FullyQualifiedName":"localhost/performance_schema/status_by_account","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"status_by_host","FullyQualifiedName":"localhost/performance_schema/status_by_host","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"status_by_host","FullyQualifiedName":"localhost/performance_schema/status_by_host","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"status_by_host","FullyQualifiedName":"localhost/performance_schema/status_by_host","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"status_by_host","FullyQualifiedName":"localhost/performance_schema/status_by_host","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"status_by_host","FullyQualifiedName":"localhost/performance_schema/status_by_host","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"status_by_host","FullyQualifiedName":"localhost/performance_schema/status_by_host","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"status_by_host","FullyQualifiedName":"localhost/performance_schema/status_by_host","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"status_by_host","FullyQualifiedName":"localhost/performance_schema/status_by_host","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"status_by_host","FullyQualifiedName":"localhost/performance_schema/status_by_host","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"status_by_host","FullyQualifiedName":"localhost/performance_schema/status_by_host","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"status_by_host","FullyQualifiedName":"localhost/performance_schema/status_by_host","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"status_by_host","FullyQualifiedName":"localhost/performance_schema/status_by_host","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"status_by_thread","FullyQualifiedName":"localhost/performance_schema/status_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"status_by_thread","FullyQualifiedName":"localhost/performance_schema/status_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"status_by_thread","FullyQualifiedName":"localhost/performance_schema/status_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"status_by_thread","FullyQualifiedName":"localhost/performance_schema/status_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"status_by_thread","FullyQualifiedName":"localhost/performance_schema/status_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"status_by_thread","FullyQualifiedName":"localhost/performance_schema/status_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"status_by_thread","FullyQualifiedName":"localhost/performance_schema/status_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"status_by_thread","FullyQualifiedName":"localhost/performance_schema/status_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"status_by_thread","FullyQualifiedName":"localhost/performance_schema/status_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"status_by_thread","FullyQualifiedName":"localhost/performance_schema/status_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"status_by_thread","FullyQualifiedName":"localhost/performance_schema/status_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"status_by_thread","FullyQualifiedName":"localhost/performance_schema/status_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"status_by_user","FullyQualifiedName":"localhost/performance_schema/status_by_user","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"status_by_user","FullyQualifiedName":"localhost/performance_schema/status_by_user","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"status_by_user","FullyQualifiedName":"localhost/performance_schema/status_by_user","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"status_by_user","FullyQualifiedName":"localhost/performance_schema/status_by_user","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"status_by_user","FullyQualifiedName":"localhost/performance_schema/status_by_user","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"status_by_user","FullyQualifiedName":"localhost/performance_schema/status_by_user","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"status_by_user","FullyQualifiedName":"localhost/performance_schema/status_by_user","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"status_by_user","FullyQualifiedName":"localhost/performance_schema/status_by_user","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"status_by_user","FullyQualifiedName":"localhost/performance_schema/status_by_user","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"status_by_user","FullyQualifiedName":"localhost/performance_schema/status_by_user","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"status_by_user","FullyQualifiedName":"localhost/performance_schema/status_by_user","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"status_by_user","FullyQualifiedName":"localhost/performance_schema/status_by_user","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"CREATE ROUTINE","Parent":null}},{"Resource":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"CREATE TEMPORARY TABLES","Parent":null}},{"Resource":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"EVENT","Parent":null}},{"Resource":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"LOCK TABLES","Parent":null}},{"Resource":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"sys_config","FullyQualifiedName":"localhost/sys/sys_config","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"sys_config","FullyQualifiedName":"localhost/sys/sys_config","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"sys_config","FullyQualifiedName":"localhost/sys/sys_config","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"sys_config","FullyQualifiedName":"localhost/sys/sys_config","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"sys_config","FullyQualifiedName":"localhost/sys/sys_config","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"sys_config","FullyQualifiedName":"localhost/sys/sys_config","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"sys_config","FullyQualifiedName":"localhost/sys/sys_config","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"sys_config","FullyQualifiedName":"localhost/sys/sys_config","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"sys_config","FullyQualifiedName":"localhost/sys/sys_config","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"sys_config","FullyQualifiedName":"localhost/sys/sys_config","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"sys_config","FullyQualifiedName":"localhost/sys/sys_config","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"sys_config","FullyQualifiedName":"localhost/sys/sys_config","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"sys_get_config","FullyQualifiedName":"localhost/sys/sys_get_config","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"sys_get_config","FullyQualifiedName":"localhost/sys/sys_get_config","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"table_exists","FullyQualifiedName":"localhost/sys/table_exists","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"table_exists","FullyQualifiedName":"localhost/sys/table_exists","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"table_handles","FullyQualifiedName":"localhost/performance_schema/table_handles","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"table_handles","FullyQualifiedName":"localhost/performance_schema/table_handles","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"table_handles","FullyQualifiedName":"localhost/performance_schema/table_handles","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"table_handles","FullyQualifiedName":"localhost/performance_schema/table_handles","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"table_handles","FullyQualifiedName":"localhost/performance_schema/table_handles","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"table_handles","FullyQualifiedName":"localhost/performance_schema/table_handles","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"table_handles","FullyQualifiedName":"localhost/performance_schema/table_handles","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"table_handles","FullyQualifiedName":"localhost/performance_schema/table_handles","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"table_handles","FullyQualifiedName":"localhost/performance_schema/table_handles","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"table_handles","FullyQualifiedName":"localhost/performance_schema/table_handles","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"table_handles","FullyQualifiedName":"localhost/performance_schema/table_handles","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"table_handles","FullyQualifiedName":"localhost/performance_schema/table_handles","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"table_io_waits_summary_by_index_usage","FullyQualifiedName":"localhost/performance_schema/table_io_waits_summary_by_index_usage","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"table_io_waits_summary_by_index_usage","FullyQualifiedName":"localhost/performance_schema/table_io_waits_summary_by_index_usage","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"table_io_waits_summary_by_index_usage","FullyQualifiedName":"localhost/performance_schema/table_io_waits_summary_by_index_usage","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"table_io_waits_summary_by_index_usage","FullyQualifiedName":"localhost/performance_schema/table_io_waits_summary_by_index_usage","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"table_io_waits_summary_by_index_usage","FullyQualifiedName":"localhost/performance_schema/table_io_waits_summary_by_index_usage","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"table_io_waits_summary_by_index_usage","FullyQualifiedName":"localhost/performance_schema/table_io_waits_summary_by_index_usage","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"table_io_waits_summary_by_index_usage","FullyQualifiedName":"localhost/performance_schema/table_io_waits_summary_by_index_usage","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"table_io_waits_summary_by_index_usage","FullyQualifiedName":"localhost/performance_schema/table_io_waits_summary_by_index_usage","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"table_io_waits_summary_by_index_usage","FullyQualifiedName":"localhost/performance_schema/table_io_waits_summary_by_index_usage","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"table_io_waits_summary_by_index_usage","FullyQualifiedName":"localhost/performance_schema/table_io_waits_summary_by_index_usage","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"table_io_waits_summary_by_index_usage","FullyQualifiedName":"localhost/performance_schema/table_io_waits_summary_by_index_usage","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"table_io_waits_summary_by_index_usage","FullyQualifiedName":"localhost/performance_schema/table_io_waits_summary_by_index_usage","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"table_io_waits_summary_by_table","FullyQualifiedName":"localhost/performance_schema/table_io_waits_summary_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"table_io_waits_summary_by_table","FullyQualifiedName":"localhost/performance_schema/table_io_waits_summary_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"table_io_waits_summary_by_table","FullyQualifiedName":"localhost/performance_schema/table_io_waits_summary_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"table_io_waits_summary_by_table","FullyQualifiedName":"localhost/performance_schema/table_io_waits_summary_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"table_io_waits_summary_by_table","FullyQualifiedName":"localhost/performance_schema/table_io_waits_summary_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"table_io_waits_summary_by_table","FullyQualifiedName":"localhost/performance_schema/table_io_waits_summary_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"table_io_waits_summary_by_table","FullyQualifiedName":"localhost/performance_schema/table_io_waits_summary_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"table_io_waits_summary_by_table","FullyQualifiedName":"localhost/performance_schema/table_io_waits_summary_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"table_io_waits_summary_by_table","FullyQualifiedName":"localhost/performance_schema/table_io_waits_summary_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"table_io_waits_summary_by_table","FullyQualifiedName":"localhost/performance_schema/table_io_waits_summary_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"table_io_waits_summary_by_table","FullyQualifiedName":"localhost/performance_schema/table_io_waits_summary_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"table_io_waits_summary_by_table","FullyQualifiedName":"localhost/performance_schema/table_io_waits_summary_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"table_lock_waits_summary_by_table","FullyQualifiedName":"localhost/performance_schema/table_lock_waits_summary_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"table_lock_waits_summary_by_table","FullyQualifiedName":"localhost/performance_schema/table_lock_waits_summary_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"table_lock_waits_summary_by_table","FullyQualifiedName":"localhost/performance_schema/table_lock_waits_summary_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"table_lock_waits_summary_by_table","FullyQualifiedName":"localhost/performance_schema/table_lock_waits_summary_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"table_lock_waits_summary_by_table","FullyQualifiedName":"localhost/performance_schema/table_lock_waits_summary_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"table_lock_waits_summary_by_table","FullyQualifiedName":"localhost/performance_schema/table_lock_waits_summary_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"table_lock_waits_summary_by_table","FullyQualifiedName":"localhost/performance_schema/table_lock_waits_summary_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"table_lock_waits_summary_by_table","FullyQualifiedName":"localhost/performance_schema/table_lock_waits_summary_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"table_lock_waits_summary_by_table","FullyQualifiedName":"localhost/performance_schema/table_lock_waits_summary_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"table_lock_waits_summary_by_table","FullyQualifiedName":"localhost/performance_schema/table_lock_waits_summary_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"table_lock_waits_summary_by_table","FullyQualifiedName":"localhost/performance_schema/table_lock_waits_summary_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"table_lock_waits_summary_by_table","FullyQualifiedName":"localhost/performance_schema/table_lock_waits_summary_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"tables_priv","FullyQualifiedName":"localhost/mysql/tables_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"tables_priv","FullyQualifiedName":"localhost/mysql/tables_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"tables_priv","FullyQualifiedName":"localhost/mysql/tables_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"tables_priv","FullyQualifiedName":"localhost/mysql/tables_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"tables_priv","FullyQualifiedName":"localhost/mysql/tables_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"tables_priv","FullyQualifiedName":"localhost/mysql/tables_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"tables_priv","FullyQualifiedName":"localhost/mysql/tables_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"tables_priv","FullyQualifiedName":"localhost/mysql/tables_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"tables_priv","FullyQualifiedName":"localhost/mysql/tables_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"tables_priv","FullyQualifiedName":"localhost/mysql/tables_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"tables_priv","FullyQualifiedName":"localhost/mysql/tables_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"tables_priv","FullyQualifiedName":"localhost/mysql/tables_priv","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"threads","FullyQualifiedName":"localhost/performance_schema/threads","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"threads","FullyQualifiedName":"localhost/performance_schema/threads","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"threads","FullyQualifiedName":"localhost/performance_schema/threads","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"threads","FullyQualifiedName":"localhost/performance_schema/threads","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"threads","FullyQualifiedName":"localhost/performance_schema/threads","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"threads","FullyQualifiedName":"localhost/performance_schema/threads","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"threads","FullyQualifiedName":"localhost/performance_schema/threads","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"threads","FullyQualifiedName":"localhost/performance_schema/threads","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"threads","FullyQualifiedName":"localhost/performance_schema/threads","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"threads","FullyQualifiedName":"localhost/performance_schema/threads","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"threads","FullyQualifiedName":"localhost/performance_schema/threads","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"threads","FullyQualifiedName":"localhost/performance_schema/threads","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"time_zone","FullyQualifiedName":"localhost/mysql/time_zone","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"time_zone","FullyQualifiedName":"localhost/mysql/time_zone","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"time_zone","FullyQualifiedName":"localhost/mysql/time_zone","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"time_zone","FullyQualifiedName":"localhost/mysql/time_zone","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"time_zone","FullyQualifiedName":"localhost/mysql/time_zone","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"time_zone","FullyQualifiedName":"localhost/mysql/time_zone","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"time_zone","FullyQualifiedName":"localhost/mysql/time_zone","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"time_zone","FullyQualifiedName":"localhost/mysql/time_zone","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"time_zone","FullyQualifiedName":"localhost/mysql/time_zone","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"time_zone","FullyQualifiedName":"localhost/mysql/time_zone","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"time_zone","FullyQualifiedName":"localhost/mysql/time_zone","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"time_zone","FullyQualifiedName":"localhost/mysql/time_zone","Type":"table","Metadata":{"bytes":81920,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"time_zone_leap_second","FullyQualifiedName":"localhost/mysql/time_zone_leap_second","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"time_zone_leap_second","FullyQualifiedName":"localhost/mysql/time_zone_leap_second","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"time_zone_leap_second","FullyQualifiedName":"localhost/mysql/time_zone_leap_second","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"time_zone_leap_second","FullyQualifiedName":"localhost/mysql/time_zone_leap_second","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"time_zone_leap_second","FullyQualifiedName":"localhost/mysql/time_zone_leap_second","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"time_zone_leap_second","FullyQualifiedName":"localhost/mysql/time_zone_leap_second","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"time_zone_leap_second","FullyQualifiedName":"localhost/mysql/time_zone_leap_second","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"time_zone_leap_second","FullyQualifiedName":"localhost/mysql/time_zone_leap_second","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"time_zone_leap_second","FullyQualifiedName":"localhost/mysql/time_zone_leap_second","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"time_zone_leap_second","FullyQualifiedName":"localhost/mysql/time_zone_leap_second","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"time_zone_leap_second","FullyQualifiedName":"localhost/mysql/time_zone_leap_second","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"time_zone_leap_second","FullyQualifiedName":"localhost/mysql/time_zone_leap_second","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"time_zone_name","FullyQualifiedName":"localhost/mysql/time_zone_name","Type":"table","Metadata":{"bytes":245760,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"time_zone_name","FullyQualifiedName":"localhost/mysql/time_zone_name","Type":"table","Metadata":{"bytes":245760,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"time_zone_name","FullyQualifiedName":"localhost/mysql/time_zone_name","Type":"table","Metadata":{"bytes":245760,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"time_zone_name","FullyQualifiedName":"localhost/mysql/time_zone_name","Type":"table","Metadata":{"bytes":245760,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"time_zone_name","FullyQualifiedName":"localhost/mysql/time_zone_name","Type":"table","Metadata":{"bytes":245760,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"time_zone_name","FullyQualifiedName":"localhost/mysql/time_zone_name","Type":"table","Metadata":{"bytes":245760,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"time_zone_name","FullyQualifiedName":"localhost/mysql/time_zone_name","Type":"table","Metadata":{"bytes":245760,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"time_zone_name","FullyQualifiedName":"localhost/mysql/time_zone_name","Type":"table","Metadata":{"bytes":245760,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"time_zone_name","FullyQualifiedName":"localhost/mysql/time_zone_name","Type":"table","Metadata":{"bytes":245760,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"time_zone_name","FullyQualifiedName":"localhost/mysql/time_zone_name","Type":"table","Metadata":{"bytes":245760,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"time_zone_name","FullyQualifiedName":"localhost/mysql/time_zone_name","Type":"table","Metadata":{"bytes":245760,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"time_zone_name","FullyQualifiedName":"localhost/mysql/time_zone_name","Type":"table","Metadata":{"bytes":245760,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"time_zone_transition","FullyQualifiedName":"localhost/mysql/time_zone_transition","Type":"table","Metadata":{"bytes":4734976,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"time_zone_transition","FullyQualifiedName":"localhost/mysql/time_zone_transition","Type":"table","Metadata":{"bytes":4734976,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"time_zone_transition","FullyQualifiedName":"localhost/mysql/time_zone_transition","Type":"table","Metadata":{"bytes":4734976,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"time_zone_transition","FullyQualifiedName":"localhost/mysql/time_zone_transition","Type":"table","Metadata":{"bytes":4734976,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"time_zone_transition","FullyQualifiedName":"localhost/mysql/time_zone_transition","Type":"table","Metadata":{"bytes":4734976,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"time_zone_transition","FullyQualifiedName":"localhost/mysql/time_zone_transition","Type":"table","Metadata":{"bytes":4734976,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"time_zone_transition","FullyQualifiedName":"localhost/mysql/time_zone_transition","Type":"table","Metadata":{"bytes":4734976,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"time_zone_transition","FullyQualifiedName":"localhost/mysql/time_zone_transition","Type":"table","Metadata":{"bytes":4734976,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"time_zone_transition","FullyQualifiedName":"localhost/mysql/time_zone_transition","Type":"table","Metadata":{"bytes":4734976,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"time_zone_transition","FullyQualifiedName":"localhost/mysql/time_zone_transition","Type":"table","Metadata":{"bytes":4734976,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"time_zone_transition","FullyQualifiedName":"localhost/mysql/time_zone_transition","Type":"table","Metadata":{"bytes":4734976,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"time_zone_transition","FullyQualifiedName":"localhost/mysql/time_zone_transition","Type":"table","Metadata":{"bytes":4734976,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"time_zone_transition_type","FullyQualifiedName":"localhost/mysql/time_zone_transition_type","Type":"table","Metadata":{"bytes":475136,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"time_zone_transition_type","FullyQualifiedName":"localhost/mysql/time_zone_transition_type","Type":"table","Metadata":{"bytes":475136,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"time_zone_transition_type","FullyQualifiedName":"localhost/mysql/time_zone_transition_type","Type":"table","Metadata":{"bytes":475136,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"time_zone_transition_type","FullyQualifiedName":"localhost/mysql/time_zone_transition_type","Type":"table","Metadata":{"bytes":475136,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"time_zone_transition_type","FullyQualifiedName":"localhost/mysql/time_zone_transition_type","Type":"table","Metadata":{"bytes":475136,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"time_zone_transition_type","FullyQualifiedName":"localhost/mysql/time_zone_transition_type","Type":"table","Metadata":{"bytes":475136,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"time_zone_transition_type","FullyQualifiedName":"localhost/mysql/time_zone_transition_type","Type":"table","Metadata":{"bytes":475136,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"time_zone_transition_type","FullyQualifiedName":"localhost/mysql/time_zone_transition_type","Type":"table","Metadata":{"bytes":475136,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"time_zone_transition_type","FullyQualifiedName":"localhost/mysql/time_zone_transition_type","Type":"table","Metadata":{"bytes":475136,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"time_zone_transition_type","FullyQualifiedName":"localhost/mysql/time_zone_transition_type","Type":"table","Metadata":{"bytes":475136,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"time_zone_transition_type","FullyQualifiedName":"localhost/mysql/time_zone_transition_type","Type":"table","Metadata":{"bytes":475136,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"time_zone_transition_type","FullyQualifiedName":"localhost/mysql/time_zone_transition_type","Type":"table","Metadata":{"bytes":475136,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"tls_channel_status","FullyQualifiedName":"localhost/performance_schema/tls_channel_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"tls_channel_status","FullyQualifiedName":"localhost/performance_schema/tls_channel_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"tls_channel_status","FullyQualifiedName":"localhost/performance_schema/tls_channel_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"tls_channel_status","FullyQualifiedName":"localhost/performance_schema/tls_channel_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"tls_channel_status","FullyQualifiedName":"localhost/performance_schema/tls_channel_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"tls_channel_status","FullyQualifiedName":"localhost/performance_schema/tls_channel_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"tls_channel_status","FullyQualifiedName":"localhost/performance_schema/tls_channel_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"tls_channel_status","FullyQualifiedName":"localhost/performance_schema/tls_channel_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"tls_channel_status","FullyQualifiedName":"localhost/performance_schema/tls_channel_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"tls_channel_status","FullyQualifiedName":"localhost/performance_schema/tls_channel_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"tls_channel_status","FullyQualifiedName":"localhost/performance_schema/tls_channel_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"tls_channel_status","FullyQualifiedName":"localhost/performance_schema/tls_channel_status","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"user","FullyQualifiedName":"localhost/mysql/user","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"user","FullyQualifiedName":"localhost/mysql/user","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"user","FullyQualifiedName":"localhost/mysql/user","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"user","FullyQualifiedName":"localhost/mysql/user","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"user","FullyQualifiedName":"localhost/mysql/user","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"user","FullyQualifiedName":"localhost/mysql/user","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"user","FullyQualifiedName":"localhost/mysql/user","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"user","FullyQualifiedName":"localhost/mysql/user","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"user","FullyQualifiedName":"localhost/mysql/user","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"user","FullyQualifiedName":"localhost/mysql/user","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"user","FullyQualifiedName":"localhost/mysql/user","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"user","FullyQualifiedName":"localhost/mysql/user","Type":"table","Metadata":{"bytes":16384,"non_existent":false},"Parent":{"Name":"mysql","FullyQualifiedName":"localhost/mysql","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"user_defined_functions","FullyQualifiedName":"localhost/performance_schema/user_defined_functions","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"user_defined_functions","FullyQualifiedName":"localhost/performance_schema/user_defined_functions","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"user_defined_functions","FullyQualifiedName":"localhost/performance_schema/user_defined_functions","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"user_defined_functions","FullyQualifiedName":"localhost/performance_schema/user_defined_functions","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"user_defined_functions","FullyQualifiedName":"localhost/performance_schema/user_defined_functions","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"user_defined_functions","FullyQualifiedName":"localhost/performance_schema/user_defined_functions","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"user_defined_functions","FullyQualifiedName":"localhost/performance_schema/user_defined_functions","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"user_defined_functions","FullyQualifiedName":"localhost/performance_schema/user_defined_functions","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"user_defined_functions","FullyQualifiedName":"localhost/performance_schema/user_defined_functions","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"user_defined_functions","FullyQualifiedName":"localhost/performance_schema/user_defined_functions","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"user_defined_functions","FullyQualifiedName":"localhost/performance_schema/user_defined_functions","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"user_defined_functions","FullyQualifiedName":"localhost/performance_schema/user_defined_functions","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"user_summary","FullyQualifiedName":"localhost/sys/user_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"user_summary","FullyQualifiedName":"localhost/sys/user_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"user_summary","FullyQualifiedName":"localhost/sys/user_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"user_summary","FullyQualifiedName":"localhost/sys/user_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"user_summary","FullyQualifiedName":"localhost/sys/user_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"user_summary","FullyQualifiedName":"localhost/sys/user_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"user_summary","FullyQualifiedName":"localhost/sys/user_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"user_summary","FullyQualifiedName":"localhost/sys/user_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"user_summary","FullyQualifiedName":"localhost/sys/user_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"user_summary","FullyQualifiedName":"localhost/sys/user_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"user_summary","FullyQualifiedName":"localhost/sys/user_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"user_summary","FullyQualifiedName":"localhost/sys/user_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"user_summary_by_file_io","FullyQualifiedName":"localhost/sys/user_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"user_summary_by_file_io","FullyQualifiedName":"localhost/sys/user_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"user_summary_by_file_io","FullyQualifiedName":"localhost/sys/user_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"user_summary_by_file_io","FullyQualifiedName":"localhost/sys/user_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"user_summary_by_file_io","FullyQualifiedName":"localhost/sys/user_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"user_summary_by_file_io","FullyQualifiedName":"localhost/sys/user_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"user_summary_by_file_io","FullyQualifiedName":"localhost/sys/user_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"user_summary_by_file_io","FullyQualifiedName":"localhost/sys/user_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"user_summary_by_file_io","FullyQualifiedName":"localhost/sys/user_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"user_summary_by_file_io","FullyQualifiedName":"localhost/sys/user_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"user_summary_by_file_io","FullyQualifiedName":"localhost/sys/user_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"user_summary_by_file_io","FullyQualifiedName":"localhost/sys/user_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"user_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/user_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"user_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/user_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"user_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/user_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"user_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/user_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"user_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/user_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"user_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/user_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"user_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/user_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"user_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/user_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"user_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/user_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"user_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/user_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"user_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/user_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"user_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/user_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"user_summary_by_stages","FullyQualifiedName":"localhost/sys/user_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"user_summary_by_stages","FullyQualifiedName":"localhost/sys/user_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"user_summary_by_stages","FullyQualifiedName":"localhost/sys/user_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"user_summary_by_stages","FullyQualifiedName":"localhost/sys/user_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"user_summary_by_stages","FullyQualifiedName":"localhost/sys/user_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"user_summary_by_stages","FullyQualifiedName":"localhost/sys/user_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"user_summary_by_stages","FullyQualifiedName":"localhost/sys/user_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"user_summary_by_stages","FullyQualifiedName":"localhost/sys/user_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"user_summary_by_stages","FullyQualifiedName":"localhost/sys/user_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"user_summary_by_stages","FullyQualifiedName":"localhost/sys/user_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"user_summary_by_stages","FullyQualifiedName":"localhost/sys/user_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"user_summary_by_stages","FullyQualifiedName":"localhost/sys/user_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"user_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/user_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"user_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/user_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"user_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/user_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"user_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/user_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"user_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/user_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"user_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/user_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"user_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/user_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"user_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/user_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"user_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/user_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"user_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/user_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"user_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/user_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"user_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/user_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"user_summary_by_statement_type","FullyQualifiedName":"localhost/sys/user_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"user_summary_by_statement_type","FullyQualifiedName":"localhost/sys/user_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"user_summary_by_statement_type","FullyQualifiedName":"localhost/sys/user_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"user_summary_by_statement_type","FullyQualifiedName":"localhost/sys/user_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"user_summary_by_statement_type","FullyQualifiedName":"localhost/sys/user_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"user_summary_by_statement_type","FullyQualifiedName":"localhost/sys/user_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"user_summary_by_statement_type","FullyQualifiedName":"localhost/sys/user_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"user_summary_by_statement_type","FullyQualifiedName":"localhost/sys/user_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"user_summary_by_statement_type","FullyQualifiedName":"localhost/sys/user_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"user_summary_by_statement_type","FullyQualifiedName":"localhost/sys/user_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"user_summary_by_statement_type","FullyQualifiedName":"localhost/sys/user_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"user_summary_by_statement_type","FullyQualifiedName":"localhost/sys/user_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"user_variables_by_thread","FullyQualifiedName":"localhost/performance_schema/user_variables_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"user_variables_by_thread","FullyQualifiedName":"localhost/performance_schema/user_variables_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"user_variables_by_thread","FullyQualifiedName":"localhost/performance_schema/user_variables_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"user_variables_by_thread","FullyQualifiedName":"localhost/performance_schema/user_variables_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"user_variables_by_thread","FullyQualifiedName":"localhost/performance_schema/user_variables_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"user_variables_by_thread","FullyQualifiedName":"localhost/performance_schema/user_variables_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"user_variables_by_thread","FullyQualifiedName":"localhost/performance_schema/user_variables_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"user_variables_by_thread","FullyQualifiedName":"localhost/performance_schema/user_variables_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"user_variables_by_thread","FullyQualifiedName":"localhost/performance_schema/user_variables_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"user_variables_by_thread","FullyQualifiedName":"localhost/performance_schema/user_variables_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"user_variables_by_thread","FullyQualifiedName":"localhost/performance_schema/user_variables_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"user_variables_by_thread","FullyQualifiedName":"localhost/performance_schema/user_variables_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"users","FullyQualifiedName":"localhost/performance_schema/users","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"users","FullyQualifiedName":"localhost/performance_schema/users","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"users","FullyQualifiedName":"localhost/performance_schema/users","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"users","FullyQualifiedName":"localhost/performance_schema/users","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"users","FullyQualifiedName":"localhost/performance_schema/users","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"users","FullyQualifiedName":"localhost/performance_schema/users","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"users","FullyQualifiedName":"localhost/performance_schema/users","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"users","FullyQualifiedName":"localhost/performance_schema/users","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"users","FullyQualifiedName":"localhost/performance_schema/users","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"users","FullyQualifiedName":"localhost/performance_schema/users","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"users","FullyQualifiedName":"localhost/performance_schema/users","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"users","FullyQualifiedName":"localhost/performance_schema/users","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"variables_by_thread","FullyQualifiedName":"localhost/performance_schema/variables_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"variables_by_thread","FullyQualifiedName":"localhost/performance_schema/variables_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"variables_by_thread","FullyQualifiedName":"localhost/performance_schema/variables_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"variables_by_thread","FullyQualifiedName":"localhost/performance_schema/variables_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"variables_by_thread","FullyQualifiedName":"localhost/performance_schema/variables_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"variables_by_thread","FullyQualifiedName":"localhost/performance_schema/variables_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"variables_by_thread","FullyQualifiedName":"localhost/performance_schema/variables_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"variables_by_thread","FullyQualifiedName":"localhost/performance_schema/variables_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"variables_by_thread","FullyQualifiedName":"localhost/performance_schema/variables_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"variables_by_thread","FullyQualifiedName":"localhost/performance_schema/variables_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"variables_by_thread","FullyQualifiedName":"localhost/performance_schema/variables_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"variables_by_thread","FullyQualifiedName":"localhost/performance_schema/variables_by_thread","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"variables_info","FullyQualifiedName":"localhost/performance_schema/variables_info","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"variables_info","FullyQualifiedName":"localhost/performance_schema/variables_info","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"variables_info","FullyQualifiedName":"localhost/performance_schema/variables_info","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"variables_info","FullyQualifiedName":"localhost/performance_schema/variables_info","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"variables_info","FullyQualifiedName":"localhost/performance_schema/variables_info","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"variables_info","FullyQualifiedName":"localhost/performance_schema/variables_info","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"variables_info","FullyQualifiedName":"localhost/performance_schema/variables_info","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"variables_info","FullyQualifiedName":"localhost/performance_schema/variables_info","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"variables_info","FullyQualifiedName":"localhost/performance_schema/variables_info","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"variables_info","FullyQualifiedName":"localhost/performance_schema/variables_info","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"variables_info","FullyQualifiedName":"localhost/performance_schema/variables_info","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"variables_info","FullyQualifiedName":"localhost/performance_schema/variables_info","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"variables_metadata","FullyQualifiedName":"localhost/performance_schema/variables_metadata","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"variables_metadata","FullyQualifiedName":"localhost/performance_schema/variables_metadata","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"variables_metadata","FullyQualifiedName":"localhost/performance_schema/variables_metadata","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"variables_metadata","FullyQualifiedName":"localhost/performance_schema/variables_metadata","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"variables_metadata","FullyQualifiedName":"localhost/performance_schema/variables_metadata","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"variables_metadata","FullyQualifiedName":"localhost/performance_schema/variables_metadata","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"variables_metadata","FullyQualifiedName":"localhost/performance_schema/variables_metadata","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"variables_metadata","FullyQualifiedName":"localhost/performance_schema/variables_metadata","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"variables_metadata","FullyQualifiedName":"localhost/performance_schema/variables_metadata","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"variables_metadata","FullyQualifiedName":"localhost/performance_schema/variables_metadata","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"variables_metadata","FullyQualifiedName":"localhost/performance_schema/variables_metadata","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"variables_metadata","FullyQualifiedName":"localhost/performance_schema/variables_metadata","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"performance_schema","FullyQualifiedName":"localhost/performance_schema","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"version","FullyQualifiedName":"localhost/sys/version","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"version","FullyQualifiedName":"localhost/sys/version","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"version","FullyQualifiedName":"localhost/sys/version","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"version","FullyQualifiedName":"localhost/sys/version","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"version","FullyQualifiedName":"localhost/sys/version","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"version","FullyQualifiedName":"localhost/sys/version","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"version","FullyQualifiedName":"localhost/sys/version","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"version","FullyQualifiedName":"localhost/sys/version","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"version","FullyQualifiedName":"localhost/sys/version","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"version","FullyQualifiedName":"localhost/sys/version","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"version","FullyQualifiedName":"localhost/sys/version","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"version","FullyQualifiedName":"localhost/sys/version","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"version_major","FullyQualifiedName":"localhost/sys/version_major","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"version_major","FullyQualifiedName":"localhost/sys/version_major","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"version_minor","FullyQualifiedName":"localhost/sys/version_minor","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"version_minor","FullyQualifiedName":"localhost/sys/version_minor","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"version_patch","FullyQualifiedName":"localhost/sys/version_patch","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER ROUTINE","Parent":null}},{"Resource":{"Name":"version_patch","FullyQualifiedName":"localhost/sys/version_patch","Type":"routine","Metadata":{"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"EXECUTE","Parent":null}},{"Resource":{"Name":"wait_classes_global_by_avg_latency","FullyQualifiedName":"localhost/sys/wait_classes_global_by_avg_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"wait_classes_global_by_avg_latency","FullyQualifiedName":"localhost/sys/wait_classes_global_by_avg_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"wait_classes_global_by_avg_latency","FullyQualifiedName":"localhost/sys/wait_classes_global_by_avg_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"wait_classes_global_by_avg_latency","FullyQualifiedName":"localhost/sys/wait_classes_global_by_avg_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"wait_classes_global_by_avg_latency","FullyQualifiedName":"localhost/sys/wait_classes_global_by_avg_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"wait_classes_global_by_avg_latency","FullyQualifiedName":"localhost/sys/wait_classes_global_by_avg_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"wait_classes_global_by_avg_latency","FullyQualifiedName":"localhost/sys/wait_classes_global_by_avg_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"wait_classes_global_by_avg_latency","FullyQualifiedName":"localhost/sys/wait_classes_global_by_avg_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"wait_classes_global_by_avg_latency","FullyQualifiedName":"localhost/sys/wait_classes_global_by_avg_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"wait_classes_global_by_avg_latency","FullyQualifiedName":"localhost/sys/wait_classes_global_by_avg_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"wait_classes_global_by_avg_latency","FullyQualifiedName":"localhost/sys/wait_classes_global_by_avg_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"wait_classes_global_by_avg_latency","FullyQualifiedName":"localhost/sys/wait_classes_global_by_avg_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"wait_classes_global_by_latency","FullyQualifiedName":"localhost/sys/wait_classes_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"wait_classes_global_by_latency","FullyQualifiedName":"localhost/sys/wait_classes_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"wait_classes_global_by_latency","FullyQualifiedName":"localhost/sys/wait_classes_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"wait_classes_global_by_latency","FullyQualifiedName":"localhost/sys/wait_classes_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"wait_classes_global_by_latency","FullyQualifiedName":"localhost/sys/wait_classes_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"wait_classes_global_by_latency","FullyQualifiedName":"localhost/sys/wait_classes_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"wait_classes_global_by_latency","FullyQualifiedName":"localhost/sys/wait_classes_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"wait_classes_global_by_latency","FullyQualifiedName":"localhost/sys/wait_classes_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"wait_classes_global_by_latency","FullyQualifiedName":"localhost/sys/wait_classes_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"wait_classes_global_by_latency","FullyQualifiedName":"localhost/sys/wait_classes_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"wait_classes_global_by_latency","FullyQualifiedName":"localhost/sys/wait_classes_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"wait_classes_global_by_latency","FullyQualifiedName":"localhost/sys/wait_classes_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"waits_by_host_by_latency","FullyQualifiedName":"localhost/sys/waits_by_host_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"waits_by_host_by_latency","FullyQualifiedName":"localhost/sys/waits_by_host_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"waits_by_host_by_latency","FullyQualifiedName":"localhost/sys/waits_by_host_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"waits_by_host_by_latency","FullyQualifiedName":"localhost/sys/waits_by_host_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"waits_by_host_by_latency","FullyQualifiedName":"localhost/sys/waits_by_host_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"waits_by_host_by_latency","FullyQualifiedName":"localhost/sys/waits_by_host_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"waits_by_host_by_latency","FullyQualifiedName":"localhost/sys/waits_by_host_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"waits_by_host_by_latency","FullyQualifiedName":"localhost/sys/waits_by_host_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"waits_by_host_by_latency","FullyQualifiedName":"localhost/sys/waits_by_host_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"waits_by_host_by_latency","FullyQualifiedName":"localhost/sys/waits_by_host_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"waits_by_host_by_latency","FullyQualifiedName":"localhost/sys/waits_by_host_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"waits_by_host_by_latency","FullyQualifiedName":"localhost/sys/waits_by_host_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"waits_by_user_by_latency","FullyQualifiedName":"localhost/sys/waits_by_user_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"waits_by_user_by_latency","FullyQualifiedName":"localhost/sys/waits_by_user_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"waits_by_user_by_latency","FullyQualifiedName":"localhost/sys/waits_by_user_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"waits_by_user_by_latency","FullyQualifiedName":"localhost/sys/waits_by_user_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"waits_by_user_by_latency","FullyQualifiedName":"localhost/sys/waits_by_user_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"waits_by_user_by_latency","FullyQualifiedName":"localhost/sys/waits_by_user_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"waits_by_user_by_latency","FullyQualifiedName":"localhost/sys/waits_by_user_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"waits_by_user_by_latency","FullyQualifiedName":"localhost/sys/waits_by_user_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"waits_by_user_by_latency","FullyQualifiedName":"localhost/sys/waits_by_user_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"waits_by_user_by_latency","FullyQualifiedName":"localhost/sys/waits_by_user_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"waits_by_user_by_latency","FullyQualifiedName":"localhost/sys/waits_by_user_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"waits_by_user_by_latency","FullyQualifiedName":"localhost/sys/waits_by_user_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"waits_global_by_latency","FullyQualifiedName":"localhost/sys/waits_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"waits_global_by_latency","FullyQualifiedName":"localhost/sys/waits_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"waits_global_by_latency","FullyQualifiedName":"localhost/sys/waits_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"waits_global_by_latency","FullyQualifiedName":"localhost/sys/waits_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"waits_global_by_latency","FullyQualifiedName":"localhost/sys/waits_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"waits_global_by_latency","FullyQualifiedName":"localhost/sys/waits_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"waits_global_by_latency","FullyQualifiedName":"localhost/sys/waits_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"waits_global_by_latency","FullyQualifiedName":"localhost/sys/waits_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"waits_global_by_latency","FullyQualifiedName":"localhost/sys/waits_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"waits_global_by_latency","FullyQualifiedName":"localhost/sys/waits_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"waits_global_by_latency","FullyQualifiedName":"localhost/sys/waits_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"waits_global_by_latency","FullyQualifiedName":"localhost/sys/waits_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$host_summary","FullyQualifiedName":"localhost/sys/x$host_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$host_summary","FullyQualifiedName":"localhost/sys/x$host_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$host_summary","FullyQualifiedName":"localhost/sys/x$host_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$host_summary","FullyQualifiedName":"localhost/sys/x$host_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$host_summary","FullyQualifiedName":"localhost/sys/x$host_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$host_summary","FullyQualifiedName":"localhost/sys/x$host_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$host_summary","FullyQualifiedName":"localhost/sys/x$host_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$host_summary","FullyQualifiedName":"localhost/sys/x$host_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$host_summary","FullyQualifiedName":"localhost/sys/x$host_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$host_summary","FullyQualifiedName":"localhost/sys/x$host_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$host_summary","FullyQualifiedName":"localhost/sys/x$host_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$host_summary","FullyQualifiedName":"localhost/sys/x$host_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$host_summary_by_file_io","FullyQualifiedName":"localhost/sys/x$host_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$host_summary_by_file_io","FullyQualifiedName":"localhost/sys/x$host_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$host_summary_by_file_io","FullyQualifiedName":"localhost/sys/x$host_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$host_summary_by_file_io","FullyQualifiedName":"localhost/sys/x$host_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$host_summary_by_file_io","FullyQualifiedName":"localhost/sys/x$host_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$host_summary_by_file_io","FullyQualifiedName":"localhost/sys/x$host_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$host_summary_by_file_io","FullyQualifiedName":"localhost/sys/x$host_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$host_summary_by_file_io","FullyQualifiedName":"localhost/sys/x$host_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$host_summary_by_file_io","FullyQualifiedName":"localhost/sys/x$host_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$host_summary_by_file_io","FullyQualifiedName":"localhost/sys/x$host_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$host_summary_by_file_io","FullyQualifiedName":"localhost/sys/x$host_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$host_summary_by_file_io","FullyQualifiedName":"localhost/sys/x$host_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$host_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/x$host_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$host_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/x$host_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$host_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/x$host_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$host_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/x$host_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$host_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/x$host_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$host_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/x$host_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$host_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/x$host_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$host_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/x$host_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$host_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/x$host_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$host_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/x$host_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$host_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/x$host_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$host_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/x$host_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$host_summary_by_stages","FullyQualifiedName":"localhost/sys/x$host_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$host_summary_by_stages","FullyQualifiedName":"localhost/sys/x$host_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$host_summary_by_stages","FullyQualifiedName":"localhost/sys/x$host_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$host_summary_by_stages","FullyQualifiedName":"localhost/sys/x$host_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$host_summary_by_stages","FullyQualifiedName":"localhost/sys/x$host_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$host_summary_by_stages","FullyQualifiedName":"localhost/sys/x$host_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$host_summary_by_stages","FullyQualifiedName":"localhost/sys/x$host_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$host_summary_by_stages","FullyQualifiedName":"localhost/sys/x$host_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$host_summary_by_stages","FullyQualifiedName":"localhost/sys/x$host_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$host_summary_by_stages","FullyQualifiedName":"localhost/sys/x$host_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$host_summary_by_stages","FullyQualifiedName":"localhost/sys/x$host_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$host_summary_by_stages","FullyQualifiedName":"localhost/sys/x$host_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$host_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/x$host_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$host_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/x$host_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$host_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/x$host_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$host_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/x$host_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$host_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/x$host_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$host_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/x$host_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$host_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/x$host_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$host_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/x$host_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$host_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/x$host_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$host_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/x$host_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$host_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/x$host_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$host_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/x$host_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$host_summary_by_statement_type","FullyQualifiedName":"localhost/sys/x$host_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$host_summary_by_statement_type","FullyQualifiedName":"localhost/sys/x$host_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$host_summary_by_statement_type","FullyQualifiedName":"localhost/sys/x$host_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$host_summary_by_statement_type","FullyQualifiedName":"localhost/sys/x$host_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$host_summary_by_statement_type","FullyQualifiedName":"localhost/sys/x$host_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$host_summary_by_statement_type","FullyQualifiedName":"localhost/sys/x$host_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$host_summary_by_statement_type","FullyQualifiedName":"localhost/sys/x$host_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$host_summary_by_statement_type","FullyQualifiedName":"localhost/sys/x$host_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$host_summary_by_statement_type","FullyQualifiedName":"localhost/sys/x$host_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$host_summary_by_statement_type","FullyQualifiedName":"localhost/sys/x$host_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$host_summary_by_statement_type","FullyQualifiedName":"localhost/sys/x$host_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$host_summary_by_statement_type","FullyQualifiedName":"localhost/sys/x$host_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$innodb_buffer_stats_by_schema","FullyQualifiedName":"localhost/sys/x$innodb_buffer_stats_by_schema","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$innodb_buffer_stats_by_schema","FullyQualifiedName":"localhost/sys/x$innodb_buffer_stats_by_schema","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$innodb_buffer_stats_by_schema","FullyQualifiedName":"localhost/sys/x$innodb_buffer_stats_by_schema","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$innodb_buffer_stats_by_schema","FullyQualifiedName":"localhost/sys/x$innodb_buffer_stats_by_schema","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$innodb_buffer_stats_by_schema","FullyQualifiedName":"localhost/sys/x$innodb_buffer_stats_by_schema","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$innodb_buffer_stats_by_schema","FullyQualifiedName":"localhost/sys/x$innodb_buffer_stats_by_schema","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$innodb_buffer_stats_by_schema","FullyQualifiedName":"localhost/sys/x$innodb_buffer_stats_by_schema","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$innodb_buffer_stats_by_schema","FullyQualifiedName":"localhost/sys/x$innodb_buffer_stats_by_schema","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$innodb_buffer_stats_by_schema","FullyQualifiedName":"localhost/sys/x$innodb_buffer_stats_by_schema","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$innodb_buffer_stats_by_schema","FullyQualifiedName":"localhost/sys/x$innodb_buffer_stats_by_schema","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$innodb_buffer_stats_by_schema","FullyQualifiedName":"localhost/sys/x$innodb_buffer_stats_by_schema","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$innodb_buffer_stats_by_schema","FullyQualifiedName":"localhost/sys/x$innodb_buffer_stats_by_schema","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$innodb_buffer_stats_by_table","FullyQualifiedName":"localhost/sys/x$innodb_buffer_stats_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$innodb_buffer_stats_by_table","FullyQualifiedName":"localhost/sys/x$innodb_buffer_stats_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$innodb_buffer_stats_by_table","FullyQualifiedName":"localhost/sys/x$innodb_buffer_stats_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$innodb_buffer_stats_by_table","FullyQualifiedName":"localhost/sys/x$innodb_buffer_stats_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$innodb_buffer_stats_by_table","FullyQualifiedName":"localhost/sys/x$innodb_buffer_stats_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$innodb_buffer_stats_by_table","FullyQualifiedName":"localhost/sys/x$innodb_buffer_stats_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$innodb_buffer_stats_by_table","FullyQualifiedName":"localhost/sys/x$innodb_buffer_stats_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$innodb_buffer_stats_by_table","FullyQualifiedName":"localhost/sys/x$innodb_buffer_stats_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$innodb_buffer_stats_by_table","FullyQualifiedName":"localhost/sys/x$innodb_buffer_stats_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$innodb_buffer_stats_by_table","FullyQualifiedName":"localhost/sys/x$innodb_buffer_stats_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$innodb_buffer_stats_by_table","FullyQualifiedName":"localhost/sys/x$innodb_buffer_stats_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$innodb_buffer_stats_by_table","FullyQualifiedName":"localhost/sys/x$innodb_buffer_stats_by_table","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$innodb_lock_waits","FullyQualifiedName":"localhost/sys/x$innodb_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$innodb_lock_waits","FullyQualifiedName":"localhost/sys/x$innodb_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$innodb_lock_waits","FullyQualifiedName":"localhost/sys/x$innodb_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$innodb_lock_waits","FullyQualifiedName":"localhost/sys/x$innodb_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$innodb_lock_waits","FullyQualifiedName":"localhost/sys/x$innodb_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$innodb_lock_waits","FullyQualifiedName":"localhost/sys/x$innodb_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$innodb_lock_waits","FullyQualifiedName":"localhost/sys/x$innodb_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$innodb_lock_waits","FullyQualifiedName":"localhost/sys/x$innodb_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$innodb_lock_waits","FullyQualifiedName":"localhost/sys/x$innodb_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$innodb_lock_waits","FullyQualifiedName":"localhost/sys/x$innodb_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$innodb_lock_waits","FullyQualifiedName":"localhost/sys/x$innodb_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$innodb_lock_waits","FullyQualifiedName":"localhost/sys/x$innodb_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$io_by_thread_by_latency","FullyQualifiedName":"localhost/sys/x$io_by_thread_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$io_by_thread_by_latency","FullyQualifiedName":"localhost/sys/x$io_by_thread_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$io_by_thread_by_latency","FullyQualifiedName":"localhost/sys/x$io_by_thread_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$io_by_thread_by_latency","FullyQualifiedName":"localhost/sys/x$io_by_thread_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$io_by_thread_by_latency","FullyQualifiedName":"localhost/sys/x$io_by_thread_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$io_by_thread_by_latency","FullyQualifiedName":"localhost/sys/x$io_by_thread_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$io_by_thread_by_latency","FullyQualifiedName":"localhost/sys/x$io_by_thread_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$io_by_thread_by_latency","FullyQualifiedName":"localhost/sys/x$io_by_thread_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$io_by_thread_by_latency","FullyQualifiedName":"localhost/sys/x$io_by_thread_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$io_by_thread_by_latency","FullyQualifiedName":"localhost/sys/x$io_by_thread_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$io_by_thread_by_latency","FullyQualifiedName":"localhost/sys/x$io_by_thread_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$io_by_thread_by_latency","FullyQualifiedName":"localhost/sys/x$io_by_thread_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$io_global_by_file_by_bytes","FullyQualifiedName":"localhost/sys/x$io_global_by_file_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$io_global_by_file_by_bytes","FullyQualifiedName":"localhost/sys/x$io_global_by_file_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$io_global_by_file_by_bytes","FullyQualifiedName":"localhost/sys/x$io_global_by_file_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$io_global_by_file_by_bytes","FullyQualifiedName":"localhost/sys/x$io_global_by_file_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$io_global_by_file_by_bytes","FullyQualifiedName":"localhost/sys/x$io_global_by_file_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$io_global_by_file_by_bytes","FullyQualifiedName":"localhost/sys/x$io_global_by_file_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$io_global_by_file_by_bytes","FullyQualifiedName":"localhost/sys/x$io_global_by_file_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$io_global_by_file_by_bytes","FullyQualifiedName":"localhost/sys/x$io_global_by_file_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$io_global_by_file_by_bytes","FullyQualifiedName":"localhost/sys/x$io_global_by_file_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$io_global_by_file_by_bytes","FullyQualifiedName":"localhost/sys/x$io_global_by_file_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$io_global_by_file_by_bytes","FullyQualifiedName":"localhost/sys/x$io_global_by_file_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$io_global_by_file_by_bytes","FullyQualifiedName":"localhost/sys/x$io_global_by_file_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$io_global_by_file_by_latency","FullyQualifiedName":"localhost/sys/x$io_global_by_file_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$io_global_by_file_by_latency","FullyQualifiedName":"localhost/sys/x$io_global_by_file_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$io_global_by_file_by_latency","FullyQualifiedName":"localhost/sys/x$io_global_by_file_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$io_global_by_file_by_latency","FullyQualifiedName":"localhost/sys/x$io_global_by_file_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$io_global_by_file_by_latency","FullyQualifiedName":"localhost/sys/x$io_global_by_file_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$io_global_by_file_by_latency","FullyQualifiedName":"localhost/sys/x$io_global_by_file_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$io_global_by_file_by_latency","FullyQualifiedName":"localhost/sys/x$io_global_by_file_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$io_global_by_file_by_latency","FullyQualifiedName":"localhost/sys/x$io_global_by_file_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$io_global_by_file_by_latency","FullyQualifiedName":"localhost/sys/x$io_global_by_file_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$io_global_by_file_by_latency","FullyQualifiedName":"localhost/sys/x$io_global_by_file_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$io_global_by_file_by_latency","FullyQualifiedName":"localhost/sys/x$io_global_by_file_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$io_global_by_file_by_latency","FullyQualifiedName":"localhost/sys/x$io_global_by_file_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$io_global_by_wait_by_bytes","FullyQualifiedName":"localhost/sys/x$io_global_by_wait_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$io_global_by_wait_by_bytes","FullyQualifiedName":"localhost/sys/x$io_global_by_wait_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$io_global_by_wait_by_bytes","FullyQualifiedName":"localhost/sys/x$io_global_by_wait_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$io_global_by_wait_by_bytes","FullyQualifiedName":"localhost/sys/x$io_global_by_wait_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$io_global_by_wait_by_bytes","FullyQualifiedName":"localhost/sys/x$io_global_by_wait_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$io_global_by_wait_by_bytes","FullyQualifiedName":"localhost/sys/x$io_global_by_wait_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$io_global_by_wait_by_bytes","FullyQualifiedName":"localhost/sys/x$io_global_by_wait_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$io_global_by_wait_by_bytes","FullyQualifiedName":"localhost/sys/x$io_global_by_wait_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$io_global_by_wait_by_bytes","FullyQualifiedName":"localhost/sys/x$io_global_by_wait_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$io_global_by_wait_by_bytes","FullyQualifiedName":"localhost/sys/x$io_global_by_wait_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$io_global_by_wait_by_bytes","FullyQualifiedName":"localhost/sys/x$io_global_by_wait_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$io_global_by_wait_by_bytes","FullyQualifiedName":"localhost/sys/x$io_global_by_wait_by_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$io_global_by_wait_by_latency","FullyQualifiedName":"localhost/sys/x$io_global_by_wait_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$io_global_by_wait_by_latency","FullyQualifiedName":"localhost/sys/x$io_global_by_wait_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$io_global_by_wait_by_latency","FullyQualifiedName":"localhost/sys/x$io_global_by_wait_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$io_global_by_wait_by_latency","FullyQualifiedName":"localhost/sys/x$io_global_by_wait_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$io_global_by_wait_by_latency","FullyQualifiedName":"localhost/sys/x$io_global_by_wait_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$io_global_by_wait_by_latency","FullyQualifiedName":"localhost/sys/x$io_global_by_wait_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$io_global_by_wait_by_latency","FullyQualifiedName":"localhost/sys/x$io_global_by_wait_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$io_global_by_wait_by_latency","FullyQualifiedName":"localhost/sys/x$io_global_by_wait_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$io_global_by_wait_by_latency","FullyQualifiedName":"localhost/sys/x$io_global_by_wait_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$io_global_by_wait_by_latency","FullyQualifiedName":"localhost/sys/x$io_global_by_wait_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$io_global_by_wait_by_latency","FullyQualifiedName":"localhost/sys/x$io_global_by_wait_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$io_global_by_wait_by_latency","FullyQualifiedName":"localhost/sys/x$io_global_by_wait_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$latest_file_io","FullyQualifiedName":"localhost/sys/x$latest_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$latest_file_io","FullyQualifiedName":"localhost/sys/x$latest_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$latest_file_io","FullyQualifiedName":"localhost/sys/x$latest_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$latest_file_io","FullyQualifiedName":"localhost/sys/x$latest_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$latest_file_io","FullyQualifiedName":"localhost/sys/x$latest_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$latest_file_io","FullyQualifiedName":"localhost/sys/x$latest_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$latest_file_io","FullyQualifiedName":"localhost/sys/x$latest_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$latest_file_io","FullyQualifiedName":"localhost/sys/x$latest_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$latest_file_io","FullyQualifiedName":"localhost/sys/x$latest_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$latest_file_io","FullyQualifiedName":"localhost/sys/x$latest_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$latest_file_io","FullyQualifiedName":"localhost/sys/x$latest_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$latest_file_io","FullyQualifiedName":"localhost/sys/x$latest_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$memory_by_host_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_host_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$memory_by_host_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_host_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$memory_by_host_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_host_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$memory_by_host_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_host_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$memory_by_host_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_host_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$memory_by_host_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_host_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$memory_by_host_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_host_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$memory_by_host_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_host_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$memory_by_host_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_host_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$memory_by_host_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_host_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$memory_by_host_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_host_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$memory_by_host_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_host_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$memory_by_thread_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_thread_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$memory_by_thread_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_thread_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$memory_by_thread_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_thread_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$memory_by_thread_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_thread_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$memory_by_thread_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_thread_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$memory_by_thread_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_thread_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$memory_by_thread_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_thread_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$memory_by_thread_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_thread_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$memory_by_thread_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_thread_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$memory_by_thread_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_thread_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$memory_by_thread_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_thread_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$memory_by_thread_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_thread_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$memory_by_user_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_user_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$memory_by_user_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_user_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$memory_by_user_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_user_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$memory_by_user_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_user_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$memory_by_user_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_user_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$memory_by_user_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_user_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$memory_by_user_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_user_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$memory_by_user_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_user_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$memory_by_user_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_user_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$memory_by_user_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_user_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$memory_by_user_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_user_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$memory_by_user_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_by_user_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$memory_global_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_global_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$memory_global_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_global_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$memory_global_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_global_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$memory_global_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_global_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$memory_global_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_global_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$memory_global_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_global_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$memory_global_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_global_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$memory_global_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_global_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$memory_global_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_global_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$memory_global_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_global_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$memory_global_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_global_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$memory_global_by_current_bytes","FullyQualifiedName":"localhost/sys/x$memory_global_by_current_bytes","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$memory_global_total","FullyQualifiedName":"localhost/sys/x$memory_global_total","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$memory_global_total","FullyQualifiedName":"localhost/sys/x$memory_global_total","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$memory_global_total","FullyQualifiedName":"localhost/sys/x$memory_global_total","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$memory_global_total","FullyQualifiedName":"localhost/sys/x$memory_global_total","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$memory_global_total","FullyQualifiedName":"localhost/sys/x$memory_global_total","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$memory_global_total","FullyQualifiedName":"localhost/sys/x$memory_global_total","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$memory_global_total","FullyQualifiedName":"localhost/sys/x$memory_global_total","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$memory_global_total","FullyQualifiedName":"localhost/sys/x$memory_global_total","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$memory_global_total","FullyQualifiedName":"localhost/sys/x$memory_global_total","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$memory_global_total","FullyQualifiedName":"localhost/sys/x$memory_global_total","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$memory_global_total","FullyQualifiedName":"localhost/sys/x$memory_global_total","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$memory_global_total","FullyQualifiedName":"localhost/sys/x$memory_global_total","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$processlist","FullyQualifiedName":"localhost/sys/x$processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$processlist","FullyQualifiedName":"localhost/sys/x$processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$processlist","FullyQualifiedName":"localhost/sys/x$processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$processlist","FullyQualifiedName":"localhost/sys/x$processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$processlist","FullyQualifiedName":"localhost/sys/x$processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$processlist","FullyQualifiedName":"localhost/sys/x$processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$processlist","FullyQualifiedName":"localhost/sys/x$processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$processlist","FullyQualifiedName":"localhost/sys/x$processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$processlist","FullyQualifiedName":"localhost/sys/x$processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$processlist","FullyQualifiedName":"localhost/sys/x$processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$processlist","FullyQualifiedName":"localhost/sys/x$processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$processlist","FullyQualifiedName":"localhost/sys/x$processlist","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$ps_digest_95th_percentile_by_avg_us","FullyQualifiedName":"localhost/sys/x$ps_digest_95th_percentile_by_avg_us","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$ps_digest_95th_percentile_by_avg_us","FullyQualifiedName":"localhost/sys/x$ps_digest_95th_percentile_by_avg_us","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$ps_digest_95th_percentile_by_avg_us","FullyQualifiedName":"localhost/sys/x$ps_digest_95th_percentile_by_avg_us","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$ps_digest_95th_percentile_by_avg_us","FullyQualifiedName":"localhost/sys/x$ps_digest_95th_percentile_by_avg_us","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$ps_digest_95th_percentile_by_avg_us","FullyQualifiedName":"localhost/sys/x$ps_digest_95th_percentile_by_avg_us","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$ps_digest_95th_percentile_by_avg_us","FullyQualifiedName":"localhost/sys/x$ps_digest_95th_percentile_by_avg_us","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$ps_digest_95th_percentile_by_avg_us","FullyQualifiedName":"localhost/sys/x$ps_digest_95th_percentile_by_avg_us","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$ps_digest_95th_percentile_by_avg_us","FullyQualifiedName":"localhost/sys/x$ps_digest_95th_percentile_by_avg_us","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$ps_digest_95th_percentile_by_avg_us","FullyQualifiedName":"localhost/sys/x$ps_digest_95th_percentile_by_avg_us","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$ps_digest_95th_percentile_by_avg_us","FullyQualifiedName":"localhost/sys/x$ps_digest_95th_percentile_by_avg_us","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$ps_digest_95th_percentile_by_avg_us","FullyQualifiedName":"localhost/sys/x$ps_digest_95th_percentile_by_avg_us","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$ps_digest_95th_percentile_by_avg_us","FullyQualifiedName":"localhost/sys/x$ps_digest_95th_percentile_by_avg_us","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$ps_digest_avg_latency_distribution","FullyQualifiedName":"localhost/sys/x$ps_digest_avg_latency_distribution","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$ps_digest_avg_latency_distribution","FullyQualifiedName":"localhost/sys/x$ps_digest_avg_latency_distribution","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$ps_digest_avg_latency_distribution","FullyQualifiedName":"localhost/sys/x$ps_digest_avg_latency_distribution","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$ps_digest_avg_latency_distribution","FullyQualifiedName":"localhost/sys/x$ps_digest_avg_latency_distribution","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$ps_digest_avg_latency_distribution","FullyQualifiedName":"localhost/sys/x$ps_digest_avg_latency_distribution","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$ps_digest_avg_latency_distribution","FullyQualifiedName":"localhost/sys/x$ps_digest_avg_latency_distribution","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$ps_digest_avg_latency_distribution","FullyQualifiedName":"localhost/sys/x$ps_digest_avg_latency_distribution","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$ps_digest_avg_latency_distribution","FullyQualifiedName":"localhost/sys/x$ps_digest_avg_latency_distribution","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$ps_digest_avg_latency_distribution","FullyQualifiedName":"localhost/sys/x$ps_digest_avg_latency_distribution","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$ps_digest_avg_latency_distribution","FullyQualifiedName":"localhost/sys/x$ps_digest_avg_latency_distribution","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$ps_digest_avg_latency_distribution","FullyQualifiedName":"localhost/sys/x$ps_digest_avg_latency_distribution","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$ps_digest_avg_latency_distribution","FullyQualifiedName":"localhost/sys/x$ps_digest_avg_latency_distribution","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$ps_schema_table_statistics_io","FullyQualifiedName":"localhost/sys/x$ps_schema_table_statistics_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$ps_schema_table_statistics_io","FullyQualifiedName":"localhost/sys/x$ps_schema_table_statistics_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$ps_schema_table_statistics_io","FullyQualifiedName":"localhost/sys/x$ps_schema_table_statistics_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$ps_schema_table_statistics_io","FullyQualifiedName":"localhost/sys/x$ps_schema_table_statistics_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$ps_schema_table_statistics_io","FullyQualifiedName":"localhost/sys/x$ps_schema_table_statistics_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$ps_schema_table_statistics_io","FullyQualifiedName":"localhost/sys/x$ps_schema_table_statistics_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$ps_schema_table_statistics_io","FullyQualifiedName":"localhost/sys/x$ps_schema_table_statistics_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$ps_schema_table_statistics_io","FullyQualifiedName":"localhost/sys/x$ps_schema_table_statistics_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$ps_schema_table_statistics_io","FullyQualifiedName":"localhost/sys/x$ps_schema_table_statistics_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$ps_schema_table_statistics_io","FullyQualifiedName":"localhost/sys/x$ps_schema_table_statistics_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$ps_schema_table_statistics_io","FullyQualifiedName":"localhost/sys/x$ps_schema_table_statistics_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$ps_schema_table_statistics_io","FullyQualifiedName":"localhost/sys/x$ps_schema_table_statistics_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$schema_flattened_keys","FullyQualifiedName":"localhost/sys/x$schema_flattened_keys","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$schema_flattened_keys","FullyQualifiedName":"localhost/sys/x$schema_flattened_keys","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$schema_flattened_keys","FullyQualifiedName":"localhost/sys/x$schema_flattened_keys","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$schema_flattened_keys","FullyQualifiedName":"localhost/sys/x$schema_flattened_keys","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$schema_flattened_keys","FullyQualifiedName":"localhost/sys/x$schema_flattened_keys","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$schema_flattened_keys","FullyQualifiedName":"localhost/sys/x$schema_flattened_keys","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$schema_flattened_keys","FullyQualifiedName":"localhost/sys/x$schema_flattened_keys","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$schema_flattened_keys","FullyQualifiedName":"localhost/sys/x$schema_flattened_keys","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$schema_flattened_keys","FullyQualifiedName":"localhost/sys/x$schema_flattened_keys","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$schema_flattened_keys","FullyQualifiedName":"localhost/sys/x$schema_flattened_keys","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$schema_flattened_keys","FullyQualifiedName":"localhost/sys/x$schema_flattened_keys","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$schema_flattened_keys","FullyQualifiedName":"localhost/sys/x$schema_flattened_keys","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$schema_index_statistics","FullyQualifiedName":"localhost/sys/x$schema_index_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$schema_index_statistics","FullyQualifiedName":"localhost/sys/x$schema_index_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$schema_index_statistics","FullyQualifiedName":"localhost/sys/x$schema_index_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$schema_index_statistics","FullyQualifiedName":"localhost/sys/x$schema_index_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$schema_index_statistics","FullyQualifiedName":"localhost/sys/x$schema_index_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$schema_index_statistics","FullyQualifiedName":"localhost/sys/x$schema_index_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$schema_index_statistics","FullyQualifiedName":"localhost/sys/x$schema_index_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$schema_index_statistics","FullyQualifiedName":"localhost/sys/x$schema_index_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$schema_index_statistics","FullyQualifiedName":"localhost/sys/x$schema_index_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$schema_index_statistics","FullyQualifiedName":"localhost/sys/x$schema_index_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$schema_index_statistics","FullyQualifiedName":"localhost/sys/x$schema_index_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$schema_index_statistics","FullyQualifiedName":"localhost/sys/x$schema_index_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$schema_table_lock_waits","FullyQualifiedName":"localhost/sys/x$schema_table_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$schema_table_lock_waits","FullyQualifiedName":"localhost/sys/x$schema_table_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$schema_table_lock_waits","FullyQualifiedName":"localhost/sys/x$schema_table_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$schema_table_lock_waits","FullyQualifiedName":"localhost/sys/x$schema_table_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$schema_table_lock_waits","FullyQualifiedName":"localhost/sys/x$schema_table_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$schema_table_lock_waits","FullyQualifiedName":"localhost/sys/x$schema_table_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$schema_table_lock_waits","FullyQualifiedName":"localhost/sys/x$schema_table_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$schema_table_lock_waits","FullyQualifiedName":"localhost/sys/x$schema_table_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$schema_table_lock_waits","FullyQualifiedName":"localhost/sys/x$schema_table_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$schema_table_lock_waits","FullyQualifiedName":"localhost/sys/x$schema_table_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$schema_table_lock_waits","FullyQualifiedName":"localhost/sys/x$schema_table_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$schema_table_lock_waits","FullyQualifiedName":"localhost/sys/x$schema_table_lock_waits","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$schema_table_statistics","FullyQualifiedName":"localhost/sys/x$schema_table_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$schema_table_statistics","FullyQualifiedName":"localhost/sys/x$schema_table_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$schema_table_statistics","FullyQualifiedName":"localhost/sys/x$schema_table_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$schema_table_statistics","FullyQualifiedName":"localhost/sys/x$schema_table_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$schema_table_statistics","FullyQualifiedName":"localhost/sys/x$schema_table_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$schema_table_statistics","FullyQualifiedName":"localhost/sys/x$schema_table_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$schema_table_statistics","FullyQualifiedName":"localhost/sys/x$schema_table_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$schema_table_statistics","FullyQualifiedName":"localhost/sys/x$schema_table_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$schema_table_statistics","FullyQualifiedName":"localhost/sys/x$schema_table_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$schema_table_statistics","FullyQualifiedName":"localhost/sys/x$schema_table_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$schema_table_statistics","FullyQualifiedName":"localhost/sys/x$schema_table_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$schema_table_statistics","FullyQualifiedName":"localhost/sys/x$schema_table_statistics","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$schema_table_statistics_with_buffer","FullyQualifiedName":"localhost/sys/x$schema_table_statistics_with_buffer","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$schema_table_statistics_with_buffer","FullyQualifiedName":"localhost/sys/x$schema_table_statistics_with_buffer","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$schema_table_statistics_with_buffer","FullyQualifiedName":"localhost/sys/x$schema_table_statistics_with_buffer","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$schema_table_statistics_with_buffer","FullyQualifiedName":"localhost/sys/x$schema_table_statistics_with_buffer","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$schema_table_statistics_with_buffer","FullyQualifiedName":"localhost/sys/x$schema_table_statistics_with_buffer","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$schema_table_statistics_with_buffer","FullyQualifiedName":"localhost/sys/x$schema_table_statistics_with_buffer","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$schema_table_statistics_with_buffer","FullyQualifiedName":"localhost/sys/x$schema_table_statistics_with_buffer","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$schema_table_statistics_with_buffer","FullyQualifiedName":"localhost/sys/x$schema_table_statistics_with_buffer","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$schema_table_statistics_with_buffer","FullyQualifiedName":"localhost/sys/x$schema_table_statistics_with_buffer","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$schema_table_statistics_with_buffer","FullyQualifiedName":"localhost/sys/x$schema_table_statistics_with_buffer","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$schema_table_statistics_with_buffer","FullyQualifiedName":"localhost/sys/x$schema_table_statistics_with_buffer","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$schema_table_statistics_with_buffer","FullyQualifiedName":"localhost/sys/x$schema_table_statistics_with_buffer","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$schema_tables_with_full_table_scans","FullyQualifiedName":"localhost/sys/x$schema_tables_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$schema_tables_with_full_table_scans","FullyQualifiedName":"localhost/sys/x$schema_tables_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$schema_tables_with_full_table_scans","FullyQualifiedName":"localhost/sys/x$schema_tables_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$schema_tables_with_full_table_scans","FullyQualifiedName":"localhost/sys/x$schema_tables_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$schema_tables_with_full_table_scans","FullyQualifiedName":"localhost/sys/x$schema_tables_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$schema_tables_with_full_table_scans","FullyQualifiedName":"localhost/sys/x$schema_tables_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$schema_tables_with_full_table_scans","FullyQualifiedName":"localhost/sys/x$schema_tables_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$schema_tables_with_full_table_scans","FullyQualifiedName":"localhost/sys/x$schema_tables_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$schema_tables_with_full_table_scans","FullyQualifiedName":"localhost/sys/x$schema_tables_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$schema_tables_with_full_table_scans","FullyQualifiedName":"localhost/sys/x$schema_tables_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$schema_tables_with_full_table_scans","FullyQualifiedName":"localhost/sys/x$schema_tables_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$schema_tables_with_full_table_scans","FullyQualifiedName":"localhost/sys/x$schema_tables_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$session","FullyQualifiedName":"localhost/sys/x$session","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$session","FullyQualifiedName":"localhost/sys/x$session","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$session","FullyQualifiedName":"localhost/sys/x$session","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$session","FullyQualifiedName":"localhost/sys/x$session","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$session","FullyQualifiedName":"localhost/sys/x$session","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$session","FullyQualifiedName":"localhost/sys/x$session","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$session","FullyQualifiedName":"localhost/sys/x$session","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$session","FullyQualifiedName":"localhost/sys/x$session","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$session","FullyQualifiedName":"localhost/sys/x$session","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$session","FullyQualifiedName":"localhost/sys/x$session","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$session","FullyQualifiedName":"localhost/sys/x$session","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$session","FullyQualifiedName":"localhost/sys/x$session","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$statement_analysis","FullyQualifiedName":"localhost/sys/x$statement_analysis","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$statement_analysis","FullyQualifiedName":"localhost/sys/x$statement_analysis","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$statement_analysis","FullyQualifiedName":"localhost/sys/x$statement_analysis","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$statement_analysis","FullyQualifiedName":"localhost/sys/x$statement_analysis","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$statement_analysis","FullyQualifiedName":"localhost/sys/x$statement_analysis","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$statement_analysis","FullyQualifiedName":"localhost/sys/x$statement_analysis","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$statement_analysis","FullyQualifiedName":"localhost/sys/x$statement_analysis","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$statement_analysis","FullyQualifiedName":"localhost/sys/x$statement_analysis","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$statement_analysis","FullyQualifiedName":"localhost/sys/x$statement_analysis","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$statement_analysis","FullyQualifiedName":"localhost/sys/x$statement_analysis","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$statement_analysis","FullyQualifiedName":"localhost/sys/x$statement_analysis","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$statement_analysis","FullyQualifiedName":"localhost/sys/x$statement_analysis","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$statements_with_errors_or_warnings","FullyQualifiedName":"localhost/sys/x$statements_with_errors_or_warnings","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$statements_with_errors_or_warnings","FullyQualifiedName":"localhost/sys/x$statements_with_errors_or_warnings","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$statements_with_errors_or_warnings","FullyQualifiedName":"localhost/sys/x$statements_with_errors_or_warnings","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$statements_with_errors_or_warnings","FullyQualifiedName":"localhost/sys/x$statements_with_errors_or_warnings","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$statements_with_errors_or_warnings","FullyQualifiedName":"localhost/sys/x$statements_with_errors_or_warnings","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$statements_with_errors_or_warnings","FullyQualifiedName":"localhost/sys/x$statements_with_errors_or_warnings","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$statements_with_errors_or_warnings","FullyQualifiedName":"localhost/sys/x$statements_with_errors_or_warnings","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$statements_with_errors_or_warnings","FullyQualifiedName":"localhost/sys/x$statements_with_errors_or_warnings","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$statements_with_errors_or_warnings","FullyQualifiedName":"localhost/sys/x$statements_with_errors_or_warnings","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$statements_with_errors_or_warnings","FullyQualifiedName":"localhost/sys/x$statements_with_errors_or_warnings","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$statements_with_errors_or_warnings","FullyQualifiedName":"localhost/sys/x$statements_with_errors_or_warnings","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$statements_with_errors_or_warnings","FullyQualifiedName":"localhost/sys/x$statements_with_errors_or_warnings","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$statements_with_full_table_scans","FullyQualifiedName":"localhost/sys/x$statements_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$statements_with_full_table_scans","FullyQualifiedName":"localhost/sys/x$statements_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$statements_with_full_table_scans","FullyQualifiedName":"localhost/sys/x$statements_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$statements_with_full_table_scans","FullyQualifiedName":"localhost/sys/x$statements_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$statements_with_full_table_scans","FullyQualifiedName":"localhost/sys/x$statements_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$statements_with_full_table_scans","FullyQualifiedName":"localhost/sys/x$statements_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$statements_with_full_table_scans","FullyQualifiedName":"localhost/sys/x$statements_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$statements_with_full_table_scans","FullyQualifiedName":"localhost/sys/x$statements_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$statements_with_full_table_scans","FullyQualifiedName":"localhost/sys/x$statements_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$statements_with_full_table_scans","FullyQualifiedName":"localhost/sys/x$statements_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$statements_with_full_table_scans","FullyQualifiedName":"localhost/sys/x$statements_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$statements_with_full_table_scans","FullyQualifiedName":"localhost/sys/x$statements_with_full_table_scans","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$statements_with_runtimes_in_95th_percentile","FullyQualifiedName":"localhost/sys/x$statements_with_runtimes_in_95th_percentile","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$statements_with_runtimes_in_95th_percentile","FullyQualifiedName":"localhost/sys/x$statements_with_runtimes_in_95th_percentile","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$statements_with_runtimes_in_95th_percentile","FullyQualifiedName":"localhost/sys/x$statements_with_runtimes_in_95th_percentile","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$statements_with_runtimes_in_95th_percentile","FullyQualifiedName":"localhost/sys/x$statements_with_runtimes_in_95th_percentile","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$statements_with_runtimes_in_95th_percentile","FullyQualifiedName":"localhost/sys/x$statements_with_runtimes_in_95th_percentile","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$statements_with_runtimes_in_95th_percentile","FullyQualifiedName":"localhost/sys/x$statements_with_runtimes_in_95th_percentile","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$statements_with_runtimes_in_95th_percentile","FullyQualifiedName":"localhost/sys/x$statements_with_runtimes_in_95th_percentile","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$statements_with_runtimes_in_95th_percentile","FullyQualifiedName":"localhost/sys/x$statements_with_runtimes_in_95th_percentile","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$statements_with_runtimes_in_95th_percentile","FullyQualifiedName":"localhost/sys/x$statements_with_runtimes_in_95th_percentile","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$statements_with_runtimes_in_95th_percentile","FullyQualifiedName":"localhost/sys/x$statements_with_runtimes_in_95th_percentile","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$statements_with_runtimes_in_95th_percentile","FullyQualifiedName":"localhost/sys/x$statements_with_runtimes_in_95th_percentile","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$statements_with_runtimes_in_95th_percentile","FullyQualifiedName":"localhost/sys/x$statements_with_runtimes_in_95th_percentile","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$statements_with_sorting","FullyQualifiedName":"localhost/sys/x$statements_with_sorting","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$statements_with_sorting","FullyQualifiedName":"localhost/sys/x$statements_with_sorting","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$statements_with_sorting","FullyQualifiedName":"localhost/sys/x$statements_with_sorting","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$statements_with_sorting","FullyQualifiedName":"localhost/sys/x$statements_with_sorting","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$statements_with_sorting","FullyQualifiedName":"localhost/sys/x$statements_with_sorting","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$statements_with_sorting","FullyQualifiedName":"localhost/sys/x$statements_with_sorting","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$statements_with_sorting","FullyQualifiedName":"localhost/sys/x$statements_with_sorting","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$statements_with_sorting","FullyQualifiedName":"localhost/sys/x$statements_with_sorting","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$statements_with_sorting","FullyQualifiedName":"localhost/sys/x$statements_with_sorting","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$statements_with_sorting","FullyQualifiedName":"localhost/sys/x$statements_with_sorting","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$statements_with_sorting","FullyQualifiedName":"localhost/sys/x$statements_with_sorting","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$statements_with_sorting","FullyQualifiedName":"localhost/sys/x$statements_with_sorting","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$statements_with_temp_tables","FullyQualifiedName":"localhost/sys/x$statements_with_temp_tables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$statements_with_temp_tables","FullyQualifiedName":"localhost/sys/x$statements_with_temp_tables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$statements_with_temp_tables","FullyQualifiedName":"localhost/sys/x$statements_with_temp_tables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$statements_with_temp_tables","FullyQualifiedName":"localhost/sys/x$statements_with_temp_tables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$statements_with_temp_tables","FullyQualifiedName":"localhost/sys/x$statements_with_temp_tables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$statements_with_temp_tables","FullyQualifiedName":"localhost/sys/x$statements_with_temp_tables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$statements_with_temp_tables","FullyQualifiedName":"localhost/sys/x$statements_with_temp_tables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$statements_with_temp_tables","FullyQualifiedName":"localhost/sys/x$statements_with_temp_tables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$statements_with_temp_tables","FullyQualifiedName":"localhost/sys/x$statements_with_temp_tables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$statements_with_temp_tables","FullyQualifiedName":"localhost/sys/x$statements_with_temp_tables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$statements_with_temp_tables","FullyQualifiedName":"localhost/sys/x$statements_with_temp_tables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$statements_with_temp_tables","FullyQualifiedName":"localhost/sys/x$statements_with_temp_tables","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$user_summary","FullyQualifiedName":"localhost/sys/x$user_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$user_summary","FullyQualifiedName":"localhost/sys/x$user_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$user_summary","FullyQualifiedName":"localhost/sys/x$user_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$user_summary","FullyQualifiedName":"localhost/sys/x$user_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$user_summary","FullyQualifiedName":"localhost/sys/x$user_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$user_summary","FullyQualifiedName":"localhost/sys/x$user_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$user_summary","FullyQualifiedName":"localhost/sys/x$user_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$user_summary","FullyQualifiedName":"localhost/sys/x$user_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$user_summary","FullyQualifiedName":"localhost/sys/x$user_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$user_summary","FullyQualifiedName":"localhost/sys/x$user_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$user_summary","FullyQualifiedName":"localhost/sys/x$user_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$user_summary","FullyQualifiedName":"localhost/sys/x$user_summary","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$user_summary_by_file_io","FullyQualifiedName":"localhost/sys/x$user_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$user_summary_by_file_io","FullyQualifiedName":"localhost/sys/x$user_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$user_summary_by_file_io","FullyQualifiedName":"localhost/sys/x$user_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$user_summary_by_file_io","FullyQualifiedName":"localhost/sys/x$user_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$user_summary_by_file_io","FullyQualifiedName":"localhost/sys/x$user_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$user_summary_by_file_io","FullyQualifiedName":"localhost/sys/x$user_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$user_summary_by_file_io","FullyQualifiedName":"localhost/sys/x$user_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$user_summary_by_file_io","FullyQualifiedName":"localhost/sys/x$user_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$user_summary_by_file_io","FullyQualifiedName":"localhost/sys/x$user_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$user_summary_by_file_io","FullyQualifiedName":"localhost/sys/x$user_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$user_summary_by_file_io","FullyQualifiedName":"localhost/sys/x$user_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$user_summary_by_file_io","FullyQualifiedName":"localhost/sys/x$user_summary_by_file_io","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$user_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/x$user_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$user_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/x$user_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$user_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/x$user_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$user_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/x$user_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$user_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/x$user_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$user_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/x$user_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$user_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/x$user_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$user_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/x$user_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$user_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/x$user_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$user_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/x$user_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$user_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/x$user_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$user_summary_by_file_io_type","FullyQualifiedName":"localhost/sys/x$user_summary_by_file_io_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$user_summary_by_stages","FullyQualifiedName":"localhost/sys/x$user_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$user_summary_by_stages","FullyQualifiedName":"localhost/sys/x$user_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$user_summary_by_stages","FullyQualifiedName":"localhost/sys/x$user_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$user_summary_by_stages","FullyQualifiedName":"localhost/sys/x$user_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$user_summary_by_stages","FullyQualifiedName":"localhost/sys/x$user_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$user_summary_by_stages","FullyQualifiedName":"localhost/sys/x$user_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$user_summary_by_stages","FullyQualifiedName":"localhost/sys/x$user_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$user_summary_by_stages","FullyQualifiedName":"localhost/sys/x$user_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$user_summary_by_stages","FullyQualifiedName":"localhost/sys/x$user_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$user_summary_by_stages","FullyQualifiedName":"localhost/sys/x$user_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$user_summary_by_stages","FullyQualifiedName":"localhost/sys/x$user_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$user_summary_by_stages","FullyQualifiedName":"localhost/sys/x$user_summary_by_stages","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$user_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/x$user_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$user_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/x$user_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$user_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/x$user_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$user_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/x$user_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$user_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/x$user_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$user_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/x$user_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$user_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/x$user_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$user_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/x$user_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$user_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/x$user_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$user_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/x$user_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$user_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/x$user_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$user_summary_by_statement_latency","FullyQualifiedName":"localhost/sys/x$user_summary_by_statement_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$user_summary_by_statement_type","FullyQualifiedName":"localhost/sys/x$user_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$user_summary_by_statement_type","FullyQualifiedName":"localhost/sys/x$user_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$user_summary_by_statement_type","FullyQualifiedName":"localhost/sys/x$user_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$user_summary_by_statement_type","FullyQualifiedName":"localhost/sys/x$user_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$user_summary_by_statement_type","FullyQualifiedName":"localhost/sys/x$user_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$user_summary_by_statement_type","FullyQualifiedName":"localhost/sys/x$user_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$user_summary_by_statement_type","FullyQualifiedName":"localhost/sys/x$user_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$user_summary_by_statement_type","FullyQualifiedName":"localhost/sys/x$user_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$user_summary_by_statement_type","FullyQualifiedName":"localhost/sys/x$user_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$user_summary_by_statement_type","FullyQualifiedName":"localhost/sys/x$user_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$user_summary_by_statement_type","FullyQualifiedName":"localhost/sys/x$user_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$user_summary_by_statement_type","FullyQualifiedName":"localhost/sys/x$user_summary_by_statement_type","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$wait_classes_global_by_avg_latency","FullyQualifiedName":"localhost/sys/x$wait_classes_global_by_avg_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$wait_classes_global_by_avg_latency","FullyQualifiedName":"localhost/sys/x$wait_classes_global_by_avg_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$wait_classes_global_by_avg_latency","FullyQualifiedName":"localhost/sys/x$wait_classes_global_by_avg_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$wait_classes_global_by_avg_latency","FullyQualifiedName":"localhost/sys/x$wait_classes_global_by_avg_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$wait_classes_global_by_avg_latency","FullyQualifiedName":"localhost/sys/x$wait_classes_global_by_avg_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$wait_classes_global_by_avg_latency","FullyQualifiedName":"localhost/sys/x$wait_classes_global_by_avg_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$wait_classes_global_by_avg_latency","FullyQualifiedName":"localhost/sys/x$wait_classes_global_by_avg_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$wait_classes_global_by_avg_latency","FullyQualifiedName":"localhost/sys/x$wait_classes_global_by_avg_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$wait_classes_global_by_avg_latency","FullyQualifiedName":"localhost/sys/x$wait_classes_global_by_avg_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$wait_classes_global_by_avg_latency","FullyQualifiedName":"localhost/sys/x$wait_classes_global_by_avg_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$wait_classes_global_by_avg_latency","FullyQualifiedName":"localhost/sys/x$wait_classes_global_by_avg_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$wait_classes_global_by_avg_latency","FullyQualifiedName":"localhost/sys/x$wait_classes_global_by_avg_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$wait_classes_global_by_latency","FullyQualifiedName":"localhost/sys/x$wait_classes_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$wait_classes_global_by_latency","FullyQualifiedName":"localhost/sys/x$wait_classes_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$wait_classes_global_by_latency","FullyQualifiedName":"localhost/sys/x$wait_classes_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$wait_classes_global_by_latency","FullyQualifiedName":"localhost/sys/x$wait_classes_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$wait_classes_global_by_latency","FullyQualifiedName":"localhost/sys/x$wait_classes_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$wait_classes_global_by_latency","FullyQualifiedName":"localhost/sys/x$wait_classes_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$wait_classes_global_by_latency","FullyQualifiedName":"localhost/sys/x$wait_classes_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$wait_classes_global_by_latency","FullyQualifiedName":"localhost/sys/x$wait_classes_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$wait_classes_global_by_latency","FullyQualifiedName":"localhost/sys/x$wait_classes_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$wait_classes_global_by_latency","FullyQualifiedName":"localhost/sys/x$wait_classes_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$wait_classes_global_by_latency","FullyQualifiedName":"localhost/sys/x$wait_classes_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$wait_classes_global_by_latency","FullyQualifiedName":"localhost/sys/x$wait_classes_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$waits_by_host_by_latency","FullyQualifiedName":"localhost/sys/x$waits_by_host_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$waits_by_host_by_latency","FullyQualifiedName":"localhost/sys/x$waits_by_host_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$waits_by_host_by_latency","FullyQualifiedName":"localhost/sys/x$waits_by_host_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$waits_by_host_by_latency","FullyQualifiedName":"localhost/sys/x$waits_by_host_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$waits_by_host_by_latency","FullyQualifiedName":"localhost/sys/x$waits_by_host_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$waits_by_host_by_latency","FullyQualifiedName":"localhost/sys/x$waits_by_host_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$waits_by_host_by_latency","FullyQualifiedName":"localhost/sys/x$waits_by_host_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$waits_by_host_by_latency","FullyQualifiedName":"localhost/sys/x$waits_by_host_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$waits_by_host_by_latency","FullyQualifiedName":"localhost/sys/x$waits_by_host_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$waits_by_host_by_latency","FullyQualifiedName":"localhost/sys/x$waits_by_host_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$waits_by_host_by_latency","FullyQualifiedName":"localhost/sys/x$waits_by_host_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$waits_by_host_by_latency","FullyQualifiedName":"localhost/sys/x$waits_by_host_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$waits_by_user_by_latency","FullyQualifiedName":"localhost/sys/x$waits_by_user_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$waits_by_user_by_latency","FullyQualifiedName":"localhost/sys/x$waits_by_user_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$waits_by_user_by_latency","FullyQualifiedName":"localhost/sys/x$waits_by_user_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$waits_by_user_by_latency","FullyQualifiedName":"localhost/sys/x$waits_by_user_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$waits_by_user_by_latency","FullyQualifiedName":"localhost/sys/x$waits_by_user_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$waits_by_user_by_latency","FullyQualifiedName":"localhost/sys/x$waits_by_user_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$waits_by_user_by_latency","FullyQualifiedName":"localhost/sys/x$waits_by_user_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$waits_by_user_by_latency","FullyQualifiedName":"localhost/sys/x$waits_by_user_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$waits_by_user_by_latency","FullyQualifiedName":"localhost/sys/x$waits_by_user_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$waits_by_user_by_latency","FullyQualifiedName":"localhost/sys/x$waits_by_user_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$waits_by_user_by_latency","FullyQualifiedName":"localhost/sys/x$waits_by_user_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$waits_by_user_by_latency","FullyQualifiedName":"localhost/sys/x$waits_by_user_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}},{"Resource":{"Name":"x$waits_global_by_latency","FullyQualifiedName":"localhost/sys/x$waits_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"ALTER","Parent":null}},{"Resource":{"Name":"x$waits_global_by_latency","FullyQualifiedName":"localhost/sys/x$waits_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE","Parent":null}},{"Resource":{"Name":"x$waits_global_by_latency","FullyQualifiedName":"localhost/sys/x$waits_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"CREATE VIEW","Parent":null}},{"Resource":{"Name":"x$waits_global_by_latency","FullyQualifiedName":"localhost/sys/x$waits_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DELETE","Parent":null}},{"Resource":{"Name":"x$waits_global_by_latency","FullyQualifiedName":"localhost/sys/x$waits_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"DROP","Parent":null}},{"Resource":{"Name":"x$waits_global_by_latency","FullyQualifiedName":"localhost/sys/x$waits_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INDEX","Parent":null}},{"Resource":{"Name":"x$waits_global_by_latency","FullyQualifiedName":"localhost/sys/x$waits_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"INSERT","Parent":null}},{"Resource":{"Name":"x$waits_global_by_latency","FullyQualifiedName":"localhost/sys/x$waits_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"REFERENCES","Parent":null}},{"Resource":{"Name":"x$waits_global_by_latency","FullyQualifiedName":"localhost/sys/x$waits_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SELECT","Parent":null}},{"Resource":{"Name":"x$waits_global_by_latency","FullyQualifiedName":"localhost/sys/x$waits_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"SHOW VIEW","Parent":null}},{"Resource":{"Name":"x$waits_global_by_latency","FullyQualifiedName":"localhost/sys/x$waits_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"TRIGGER","Parent":null}},{"Resource":{"Name":"x$waits_global_by_latency","FullyQualifiedName":"localhost/sys/x$waits_global_by_latency","Type":"table","Metadata":{"bytes":0,"non_existent":false},"Parent":{"Name":"sys","FullyQualifiedName":"localhost/sys","Type":"database","Metadata":{"default":true,"non_existent":false},"Parent":{"Name":"root@%","FullyQualifiedName":"localhost/root@%","Type":"user","Metadata":null,"Parent":null}}},"Permission":{"Value":"UPDATE","Parent":null}}],"UnboundedResources":null,"Metadata":null} \ No newline at end of file diff --git a/pkg/analyzer/analyzers/mysql/mysql.go b/pkg/analyzer/analyzers/mysql/mysql.go index 846ddcb9b..81870af0a 100644 --- a/pkg/analyzer/analyzers/mysql/mysql.go +++ b/pkg/analyzer/analyzers/mysql/mysql.go @@ -1,3 +1,5 @@ +//go:generate generate_permissions permissions.yaml permissions.go mysql + package mysql import ( @@ -17,8 +19,189 @@ import ( "github.com/trufflesecurity/trufflehog/v3/pkg/analyzer/analyzers" "github.com/trufflesecurity/trufflehog/v3/pkg/analyzer/config" + "github.com/trufflesecurity/trufflehog/v3/pkg/analyzer/pb/analyzerpb" + "github.com/trufflesecurity/trufflehog/v3/pkg/context" ) +var _ analyzers.Analyzer = (*Analyzer)(nil) + +type Analyzer struct { + Cfg *config.Config +} + +func (Analyzer) Type() analyzerpb.AnalyzerType { return analyzerpb.AnalyzerType_MySQL } + +func (a Analyzer) Analyze(_ context.Context, credInfo map[string]string) (*analyzers.AnalyzerResult, error) { + uri, ok := credInfo["connection_string"] + if !ok { + return nil, fmt.Errorf("missing connection string") + } + info, err := AnalyzePermissions(a.Cfg, uri) + if err != nil { + return nil, err + } + return secretInfoToAnalyzerResult(info), nil +} + +func secretInfoToAnalyzerResult(info *SecretInfo) *analyzers.AnalyzerResult { + if info == nil { + return nil + } + result := analyzers.AnalyzerResult{ + AnalyzerType: analyzerpb.AnalyzerType_MySQL, + Metadata: nil, + Bindings: []analyzers.Binding{}, + } + + // add user priviliges to bindings + userBindings, userResource := bakeUserBindings(info) + result.Bindings = append(result.Bindings, userBindings...) + + // add user's database priviliges to bindings + databaseBindings := bakeDatabaseBindings(userResource, info) + result.Bindings = append(result.Bindings, databaseBindings...) + + return &result +} + +func bakeUserBindings(info *SecretInfo) ([]analyzers.Binding, *analyzers.Resource) { + + var userBindings []analyzers.Binding + + // add user and their priviliges to bindings + userResource := analyzers.Resource{ + Name: info.User, + FullyQualifiedName: info.Host + "/" + info.User, + Type: "user", + } + + for _, priv := range info.GlobalPrivs.Privs { + userBindings = append(userBindings, analyzers.Binding{ + Resource: userResource, + Permission: analyzers.Permission{ + Value: priv, + }, + }) + } + + return userBindings, &userResource +} + +func bakeDatabaseBindings(userResource *analyzers.Resource, info *SecretInfo) []analyzers.Binding { + var databaseBindings []analyzers.Binding + + for _, database := range info.Databases { + dbResource := analyzers.Resource{ + Name: database.Name, + FullyQualifiedName: info.Host + "/" + database.Name, + Type: "database", + Metadata: map[string]any{ + "default": database.Default, + "non_existent": database.Nonexistent, + }, + Parent: userResource, + } + + for _, priv := range database.Privs { + databaseBindings = append(databaseBindings, analyzers.Binding{ + Resource: dbResource, + Permission: analyzers.Permission{ + Value: priv, + }, + }) + } + + // add this database's table privileges to bindings + tableBindings := bakeTableBindings(&dbResource, database) + databaseBindings = append(databaseBindings, tableBindings...) + + // add this database's routines privileges to bindings + routineBindings := bakeRoutineBindings(&dbResource, database) + databaseBindings = append(databaseBindings, routineBindings...) + } + + return databaseBindings +} + +func bakeTableBindings(dbResource *analyzers.Resource, database *Database) []analyzers.Binding { + if database.Tables == nil { + return nil + } + var tableBindings []analyzers.Binding + for _, table := range *database.Tables { + tableResource := analyzers.Resource{ + Name: table.Name, + FullyQualifiedName: dbResource.FullyQualifiedName + "/" + table.Name, + Type: "table", + Metadata: map[string]any{ + "bytes": table.Bytes, + "non_existent": table.Nonexistent, + }, + Parent: dbResource, + } + + for _, priv := range table.Privs { + tableBindings = append(tableBindings, analyzers.Binding{ + Resource: tableResource, + Permission: analyzers.Permission{ + Value: priv, + }, + }) + } + + // Add this table's column privileges to bindings + for _, column := range table.Columns { + columnResource := analyzers.Resource{ + Name: column.Name, + FullyQualifiedName: tableResource.FullyQualifiedName + "/" + column.Name, + Type: "column", + Parent: &tableResource, + } + + for _, priv := range column.Privs { + tableBindings = append(tableBindings, analyzers.Binding{ + Resource: columnResource, + Permission: analyzers.Permission{ + Value: priv, + }, + }) + } + } + } + + return tableBindings +} + +func bakeRoutineBindings(dbResource *analyzers.Resource, database *Database) []analyzers.Binding { + if database.Routines == nil { + return nil + } + + var routineBindings []analyzers.Binding + for _, routine := range *database.Routines { + routineResource := analyzers.Resource{ + Name: routine.Name, + FullyQualifiedName: dbResource.FullyQualifiedName + "/" + routine.Name, + Type: "routine", + Metadata: map[string]any{ + "non_existent": routine.Nonexistent, + }, + Parent: dbResource, + } + + for _, priv := range routine.Privs { + routineBindings = append(routineBindings, analyzers.Binding{ + Resource: routineResource, + Permission: analyzers.Permission{ + Value: priv, + }, + }) + } + } + + return routineBindings +} + const ( // MySQL SSL Modes mysql_sslmode = "ssl-mode" @@ -74,6 +257,7 @@ type Routine struct { // USER() returns `doadmin@localhost` type SecretInfo struct { + Host string User string Databases map[string]*Database GlobalPrivs GlobalPrivs @@ -99,8 +283,13 @@ func AnalyzeAndPrintPermissions(cfg *config.Config, key string) { } func AnalyzePermissions(cfg *config.Config, connectionStr string) (*SecretInfo, error) { + // Parse the connection string + u, err := parseConnectionStr(connectionStr) + if err != nil { + return nil, fmt.Errorf("parsing the connection string: %w", err) + } - db, err := createConnection(connectionStr) + db, err := createConnection(u) if err != nil { return nil, fmt.Errorf("connecting to the MySQL database: %w", err) } @@ -139,13 +328,14 @@ func AnalyzePermissions(cfg *config.Config, connectionStr string) (*SecretInfo, processGrants(grants, databases, &globalPrivs) return &SecretInfo{ + Host: u.Hostname(), User: user, Databases: databases, GlobalPrivs: globalPrivs, }, nil } -func createConnection(connection string) (*sql.DB, error) { +func parseConnectionStr(connection string) (*dburl.URL, error) { // Check if the connection string starts with 'mysql://' if !strings.HasPrefix(connection, "mysql://") { color.Yellow("[i] The connection string should start with 'mysql://'. Adding it for you.") @@ -163,7 +353,10 @@ func createConnection(connection string) (*sql.DB, error) { if err != nil { return nil, err } + return u, nil +} +func createConnection(u *dburl.URL) (*sql.DB, error) { // Connect to the MySQL database db, err := sql.Open("mysql", u.DSN) if err != nil { diff --git a/pkg/analyzer/analyzers/mysql/mysql_test.go b/pkg/analyzer/analyzers/mysql/mysql_test.go new file mode 100644 index 000000000..d31e2c297 --- /dev/null +++ b/pkg/analyzer/analyzers/mysql/mysql_test.go @@ -0,0 +1,104 @@ +package mysql + +import ( + _ "embed" + "encoding/json" + "fmt" + "testing" + + "github.com/brianvoe/gofakeit/v7" + "github.com/google/go-cmp/cmp" + "github.com/testcontainers/testcontainers-go/modules/mysql" + "github.com/trufflesecurity/trufflehog/v3/pkg/analyzer/analyzers" + "github.com/trufflesecurity/trufflehog/v3/pkg/analyzer/config" + "github.com/trufflesecurity/trufflehog/v3/pkg/context" +) + +//go:embed expected_output.json +var expectedOutput []byte + +func TestAnalyzer_Analyze(t *testing.T) { + mysqlUser := "root" + mysqlPass := gofakeit.Password(true, true, true, false, false, 10) + mysqlDatabase := "mysql" + + ctx := context.Background() + + mysqlC, err := mysql.Run(ctx, "mysql", + mysql.WithDatabase(mysqlDatabase), + mysql.WithUsername(mysqlUser), + mysql.WithPassword(mysqlPass), + ) + if err != nil { + t.Fatal(err) + } + + defer func() { _ = mysqlC.Terminate(ctx) }() + + host, err := mysqlC.Host(ctx) + if err != nil { + t.Fatal(err) + } + port, err := mysqlC.MappedPort(ctx, "3306") + if err != nil { + t.Fatal(err) + } + + tests := []struct { + name string + connectionString string + want []byte // JSON string + wantErr bool + }{ + { + name: "valid Mysql connection", + connectionString: fmt.Sprintf(`root:%s@%s:%s/%s`, mysqlPass, host, port.Port(), mysqlDatabase), + want: expectedOutput, + wantErr: false, + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + a := Analyzer{Cfg: &config.Config{}} + got, err := a.Analyze(context.Background(), map[string]string{"connection_string": tt.connectionString}) + if (err != nil) != tt.wantErr { + t.Errorf("Analyzer.Analyze() error = %v, wantErr %v", err, tt.wantErr) + return + } + + // Marshal the actual result to JSON + gotJSON, err := json.Marshal(got) + if err != nil { + t.Fatalf("could not marshal got to JSON: %s", err) + } + + // Parse the expected JSON string + var wantObj analyzers.AnalyzerResult + if err := json.Unmarshal(tt.want, &wantObj); err != nil { + t.Fatalf("could not unmarshal want JSON string: %s", err) + } + + // Marshal the expected result to JSON (to normalize) + wantJSON, err := json.Marshal(wantObj) + if err != nil { + t.Fatalf("could not marshal want to JSON: %s", err) + } + + // Compare bindings separately because they are not guaranteed to be in the same order + if len(got.Bindings) != len(wantObj.Bindings) { + t.Errorf("Analyzer.Analyze() = %s, want %s", gotJSON, wantJSON) + return + } + + got.Bindings = nil + wantObj.Bindings = nil + + // Compare the rest of the Object + if diff := cmp.Diff(&wantObj, got); diff != "" { + t.Errorf("%s: (-want +got)\n%s", tt.name, diff) + return + } + }) + } +} diff --git a/pkg/analyzer/analyzers/mysql/permissions.go b/pkg/analyzer/analyzers/mysql/permissions.go new file mode 100644 index 000000000..4b3d13a93 --- /dev/null +++ b/pkg/analyzer/analyzers/mysql/permissions.go @@ -0,0 +1,451 @@ +// Code generated by go generate; DO NOT EDIT. +package mysql + +import "errors" + +type Permission int + +const ( + Invalid Permission = iota + Alter Permission = iota + AlterRoutine Permission = iota + AllowNonexistentDefiner Permission = iota + ApplicationPasswordAdmin Permission = iota + AuditAbortExempt Permission = iota + AuditAdmin Permission = iota + AuthenticationPolicyAdmin Permission = iota + BackupAdmin Permission = iota + BinlogAdmin Permission = iota + BinlogEncryptionAdmin Permission = iota + CloneAdmin Permission = iota + ConnectionAdmin Permission = iota + Create Permission = iota + CreateRole Permission = iota + CreateRoutine Permission = iota + CreateTablespace Permission = iota + CreateTemporaryTables Permission = iota + CreateUser Permission = iota + CreateView Permission = iota + Delete Permission = iota + Drop Permission = iota + DropRole Permission = iota + EncryptionKeyAdmin Permission = iota + Event Permission = iota + Execute Permission = iota + File Permission = iota + FirewallAdmin Permission = iota + FirewallExempt Permission = iota + FirewallUser Permission = iota + FlushOptimizerCosts Permission = iota + FlushStatus Permission = iota + FlushTables Permission = iota + FlushUserResources Permission = iota + GrantOption Permission = iota + GroupReplicationAdmin Permission = iota + GroupReplicationStream Permission = iota + Index Permission = iota + InnodbRedoLogArchive Permission = iota + InnodbRedoLogEnable Permission = iota + Insert Permission = iota + LockingTables Permission = iota + MaskingDictionariesAdmin Permission = iota + NdbStoredUser Permission = iota + PasswordlessUserAdmin Permission = iota + PersistRoVariablesAdmin Permission = iota + Process Permission = iota + Proxy Permission = iota + References Permission = iota + Reload Permission = iota + ReplicationApplier Permission = iota + ReplicationClient Permission = iota + ReplicationSlave Permission = iota + ReplicationSlaveAdmin Permission = iota + ResourceGroupAdmin Permission = iota + ResourceGroupUser Permission = iota + RoleAdmin Permission = iota + Select Permission = iota + SensitiveVariablesObserver Permission = iota + ServiceConnectionAdmin Permission = iota + SessionVariablesAdmin Permission = iota + SetAnyDefiner Permission = iota + SetUserId Permission = iota + ShowDatabases Permission = iota + ShowRoutine Permission = iota + ShowView Permission = iota + Shutdown Permission = iota + SkipQueryRewrite Permission = iota + Super Permission = iota + SystemUser Permission = iota + SystemVariablesAdmin Permission = iota + TableEncryptionAdmin Permission = iota + TelemetryLogAdmin Permission = iota + TpConnectionAdmin Permission = iota + TransactionGtidTag Permission = iota + Trigger Permission = iota + Update Permission = iota + Usage Permission = iota + VersionTokenAdmin Permission = iota + XaRecoverAdmin Permission = iota +) + +var ( + PermissionStrings = map[Permission]string{ + Alter: "alter", + AlterRoutine: "alter_routine", + AllowNonexistentDefiner: "allow_nonexistent_definer", + ApplicationPasswordAdmin: "application_password_admin", + AuditAbortExempt: "audit_abort_exempt", + AuditAdmin: "audit_admin", + AuthenticationPolicyAdmin: "authentication_policy_admin", + BackupAdmin: "backup_admin", + BinlogAdmin: "binlog_admin", + BinlogEncryptionAdmin: "binlog_encryption_admin", + CloneAdmin: "clone_admin", + ConnectionAdmin: "connection_admin", + Create: "create", + CreateRole: "create_role", + CreateRoutine: "create_routine", + CreateTablespace: "create_tablespace", + CreateTemporaryTables: "create_temporary_tables", + CreateUser: "create_user", + CreateView: "create_view", + Delete: "delete", + Drop: "drop", + DropRole: "drop_role", + EncryptionKeyAdmin: "encryption_key_admin", + Event: "event", + Execute: "execute", + File: "file", + FirewallAdmin: "firewall_admin", + FirewallExempt: "firewall_exempt", + FirewallUser: "firewall_user", + FlushOptimizerCosts: "flush_optimizer_costs", + FlushStatus: "flush_status", + FlushTables: "flush_tables", + FlushUserResources: "flush_user_resources", + GrantOption: "grant_option", + GroupReplicationAdmin: "group_replication_admin", + GroupReplicationStream: "group_replication_stream", + Index: "index", + InnodbRedoLogArchive: "innodb_redo_log_archive", + InnodbRedoLogEnable: "innodb_redo_log_enable", + Insert: "insert", + LockingTables: "locking_tables", + MaskingDictionariesAdmin: "masking_dictionaries_admin", + NdbStoredUser: "ndb_stored_user", + PasswordlessUserAdmin: "passwordless_user_admin", + PersistRoVariablesAdmin: "persist_ro_variables_admin", + Process: "process", + Proxy: "proxy", + References: "references", + Reload: "reload", + ReplicationApplier: "replication_applier", + ReplicationClient: "replication_client", + ReplicationSlave: "replication_slave", + ReplicationSlaveAdmin: "replication_slave_admin", + ResourceGroupAdmin: "resource_group_admin", + ResourceGroupUser: "resource_group_user", + RoleAdmin: "role_admin", + Select: "select", + SensitiveVariablesObserver: "sensitive_variables_observer", + ServiceConnectionAdmin: "service_connection_admin", + SessionVariablesAdmin: "session_variables_admin", + SetAnyDefiner: "set_any_definer", + SetUserId: "set_user_id", + ShowDatabases: "show_databases", + ShowRoutine: "show_routine", + ShowView: "show_view", + Shutdown: "shutdown", + SkipQueryRewrite: "skip_query_rewrite", + Super: "super", + SystemUser: "system_user", + SystemVariablesAdmin: "system_variables_admin", + TableEncryptionAdmin: "table_encryption_admin", + TelemetryLogAdmin: "telemetry_log_admin", + TpConnectionAdmin: "tp_connection_admin", + TransactionGtidTag: "transaction_gtid_tag", + Trigger: "trigger", + Update: "update", + Usage: "usage", + VersionTokenAdmin: "version_token_admin", + XaRecoverAdmin: "xa_recover_admin", + } + + StringToPermission = map[string]Permission{ + "alter": Alter, + "alter_routine": AlterRoutine, + "allow_nonexistent_definer": AllowNonexistentDefiner, + "application_password_admin": ApplicationPasswordAdmin, + "audit_abort_exempt": AuditAbortExempt, + "audit_admin": AuditAdmin, + "authentication_policy_admin": AuthenticationPolicyAdmin, + "backup_admin": BackupAdmin, + "binlog_admin": BinlogAdmin, + "binlog_encryption_admin": BinlogEncryptionAdmin, + "clone_admin": CloneAdmin, + "connection_admin": ConnectionAdmin, + "create": Create, + "create_role": CreateRole, + "create_routine": CreateRoutine, + "create_tablespace": CreateTablespace, + "create_temporary_tables": CreateTemporaryTables, + "create_user": CreateUser, + "create_view": CreateView, + "delete": Delete, + "drop": Drop, + "drop_role": DropRole, + "encryption_key_admin": EncryptionKeyAdmin, + "event": Event, + "execute": Execute, + "file": File, + "firewall_admin": FirewallAdmin, + "firewall_exempt": FirewallExempt, + "firewall_user": FirewallUser, + "flush_optimizer_costs": FlushOptimizerCosts, + "flush_status": FlushStatus, + "flush_tables": FlushTables, + "flush_user_resources": FlushUserResources, + "grant_option": GrantOption, + "group_replication_admin": GroupReplicationAdmin, + "group_replication_stream": GroupReplicationStream, + "index": Index, + "innodb_redo_log_archive": InnodbRedoLogArchive, + "innodb_redo_log_enable": InnodbRedoLogEnable, + "insert": Insert, + "locking_tables": LockingTables, + "masking_dictionaries_admin": MaskingDictionariesAdmin, + "ndb_stored_user": NdbStoredUser, + "passwordless_user_admin": PasswordlessUserAdmin, + "persist_ro_variables_admin": PersistRoVariablesAdmin, + "process": Process, + "proxy": Proxy, + "references": References, + "reload": Reload, + "replication_applier": ReplicationApplier, + "replication_client": ReplicationClient, + "replication_slave": ReplicationSlave, + "replication_slave_admin": ReplicationSlaveAdmin, + "resource_group_admin": ResourceGroupAdmin, + "resource_group_user": ResourceGroupUser, + "role_admin": RoleAdmin, + "select": Select, + "sensitive_variables_observer": SensitiveVariablesObserver, + "service_connection_admin": ServiceConnectionAdmin, + "session_variables_admin": SessionVariablesAdmin, + "set_any_definer": SetAnyDefiner, + "set_user_id": SetUserId, + "show_databases": ShowDatabases, + "show_routine": ShowRoutine, + "show_view": ShowView, + "shutdown": Shutdown, + "skip_query_rewrite": SkipQueryRewrite, + "super": Super, + "system_user": SystemUser, + "system_variables_admin": SystemVariablesAdmin, + "table_encryption_admin": TableEncryptionAdmin, + "telemetry_log_admin": TelemetryLogAdmin, + "tp_connection_admin": TpConnectionAdmin, + "transaction_gtid_tag": TransactionGtidTag, + "trigger": Trigger, + "update": Update, + "usage": Usage, + "version_token_admin": VersionTokenAdmin, + "xa_recover_admin": XaRecoverAdmin, + } + + PermissionIDs = map[Permission]int{ + Alter: 1, + AlterRoutine: 2, + AllowNonexistentDefiner: 3, + ApplicationPasswordAdmin: 4, + AuditAbortExempt: 5, + AuditAdmin: 6, + AuthenticationPolicyAdmin: 7, + BackupAdmin: 8, + BinlogAdmin: 9, + BinlogEncryptionAdmin: 10, + CloneAdmin: 11, + ConnectionAdmin: 12, + Create: 13, + CreateRole: 14, + CreateRoutine: 15, + CreateTablespace: 16, + CreateTemporaryTables: 17, + CreateUser: 18, + CreateView: 19, + Delete: 20, + Drop: 21, + DropRole: 22, + EncryptionKeyAdmin: 23, + Event: 24, + Execute: 25, + File: 26, + FirewallAdmin: 27, + FirewallExempt: 28, + FirewallUser: 29, + FlushOptimizerCosts: 30, + FlushStatus: 31, + FlushTables: 32, + FlushUserResources: 33, + GrantOption: 34, + GroupReplicationAdmin: 35, + GroupReplicationStream: 36, + Index: 37, + InnodbRedoLogArchive: 38, + InnodbRedoLogEnable: 39, + Insert: 40, + LockingTables: 41, + MaskingDictionariesAdmin: 42, + NdbStoredUser: 43, + PasswordlessUserAdmin: 44, + PersistRoVariablesAdmin: 45, + Process: 46, + Proxy: 47, + References: 48, + Reload: 49, + ReplicationApplier: 50, + ReplicationClient: 51, + ReplicationSlave: 52, + ReplicationSlaveAdmin: 53, + ResourceGroupAdmin: 54, + ResourceGroupUser: 55, + RoleAdmin: 56, + Select: 57, + SensitiveVariablesObserver: 58, + ServiceConnectionAdmin: 59, + SessionVariablesAdmin: 60, + SetAnyDefiner: 61, + SetUserId: 62, + ShowDatabases: 63, + ShowRoutine: 64, + ShowView: 65, + Shutdown: 66, + SkipQueryRewrite: 67, + Super: 68, + SystemUser: 69, + SystemVariablesAdmin: 70, + TableEncryptionAdmin: 71, + TelemetryLogAdmin: 72, + TpConnectionAdmin: 73, + TransactionGtidTag: 74, + Trigger: 75, + Update: 76, + Usage: 77, + VersionTokenAdmin: 78, + XaRecoverAdmin: 79, + } + + IdToPermission = map[int]Permission{ + 1: Alter, + 2: AlterRoutine, + 3: AllowNonexistentDefiner, + 4: ApplicationPasswordAdmin, + 5: AuditAbortExempt, + 6: AuditAdmin, + 7: AuthenticationPolicyAdmin, + 8: BackupAdmin, + 9: BinlogAdmin, + 10: BinlogEncryptionAdmin, + 11: CloneAdmin, + 12: ConnectionAdmin, + 13: Create, + 14: CreateRole, + 15: CreateRoutine, + 16: CreateTablespace, + 17: CreateTemporaryTables, + 18: CreateUser, + 19: CreateView, + 20: Delete, + 21: Drop, + 22: DropRole, + 23: EncryptionKeyAdmin, + 24: Event, + 25: Execute, + 26: File, + 27: FirewallAdmin, + 28: FirewallExempt, + 29: FirewallUser, + 30: FlushOptimizerCosts, + 31: FlushStatus, + 32: FlushTables, + 33: FlushUserResources, + 34: GrantOption, + 35: GroupReplicationAdmin, + 36: GroupReplicationStream, + 37: Index, + 38: InnodbRedoLogArchive, + 39: InnodbRedoLogEnable, + 40: Insert, + 41: LockingTables, + 42: MaskingDictionariesAdmin, + 43: NdbStoredUser, + 44: PasswordlessUserAdmin, + 45: PersistRoVariablesAdmin, + 46: Process, + 47: Proxy, + 48: References, + 49: Reload, + 50: ReplicationApplier, + 51: ReplicationClient, + 52: ReplicationSlave, + 53: ReplicationSlaveAdmin, + 54: ResourceGroupAdmin, + 55: ResourceGroupUser, + 56: RoleAdmin, + 57: Select, + 58: SensitiveVariablesObserver, + 59: ServiceConnectionAdmin, + 60: SessionVariablesAdmin, + 61: SetAnyDefiner, + 62: SetUserId, + 63: ShowDatabases, + 64: ShowRoutine, + 65: ShowView, + 66: Shutdown, + 67: SkipQueryRewrite, + 68: Super, + 69: SystemUser, + 70: SystemVariablesAdmin, + 71: TableEncryptionAdmin, + 72: TelemetryLogAdmin, + 73: TpConnectionAdmin, + 74: TransactionGtidTag, + 75: Trigger, + 76: Update, + 77: Usage, + 78: VersionTokenAdmin, + 79: XaRecoverAdmin, + } +) + +// ToString converts a Permission enum to its string representation +func (p Permission) ToString() (string, error) { + if str, ok := PermissionStrings[p]; ok { + return str, nil + } + return "", errors.New("invalid permission") +} + +// ToID converts a Permission enum to its ID +func (p Permission) ToID() (int, error) { + if id, ok := PermissionIDs[p]; ok { + return id, nil + } + return 0, errors.New("invalid permission") +} + +// PermissionFromString converts a string representation to its Permission enum +func PermissionFromString(s string) (Permission, error) { + if p, ok := StringToPermission[s]; ok { + return p, nil + } + return 0, errors.New("invalid permission string") +} + +// PermissionFromID converts an ID to its Permission enum +func PermissionFromID(id int) (Permission, error) { + if p, ok := IdToPermission[id]; ok { + return p, nil + } + return 0, errors.New("invalid permission ID") +} diff --git a/pkg/analyzer/analyzers/mysql/permissions.yaml b/pkg/analyzer/analyzers/mysql/permissions.yaml new file mode 100644 index 000000000..59f03949f --- /dev/null +++ b/pkg/analyzer/analyzers/mysql/permissions.yaml @@ -0,0 +1,80 @@ +permissions: + - alter + - alter_routine + - allow_nonexistent_definer + - application_password_admin + - audit_abort_exempt + - audit_admin + - authentication_policy_admin + - backup_admin + - binlog_admin + - binlog_encryption_admin + - clone_admin + - connection_admin + - create + - create_role + - create_routine + - create_tablespace + - create_temporary_tables + - create_user + - create_view + - delete + - drop + - drop_role + - encryption_key_admin + - event + - execute + - file + - firewall_admin + - firewall_exempt + - firewall_user + - flush_optimizer_costs + - flush_status + - flush_tables + - flush_user_resources + - grant_option + - group_replication_admin + - group_replication_stream + - index + - innodb_redo_log_archive + - innodb_redo_log_enable + - insert + - locking_tables + - masking_dictionaries_admin + - ndb_stored_user + - passwordless_user_admin + - persist_ro_variables_admin + - process + - proxy + - references + - reload + - replication_applier + - replication_client + - replication_slave + - replication_slave_admin + - resource_group_admin + - resource_group_user + - role_admin + - select + - sensitive_variables_observer + - service_connection_admin + - session_variables_admin + - set_any_definer + - set_user_id + - show_databases + - show_routine + - show_view + - shutdown + - skip_query_rewrite + - super + - system_user + - system_variables_admin + - table_encryption_admin + - telemetry_log_admin + - tp_connection_admin + - transaction_gtid_tag + - trigger + - update + - usage + - version_token_admin + - xa_recover_admin diff --git a/pkg/detectors/jdbc/jdbc.go b/pkg/detectors/jdbc/jdbc.go index d87e64377..451ee6ada 100644 --- a/pkg/detectors/jdbc/jdbc.go +++ b/pkg/detectors/jdbc/jdbc.go @@ -97,6 +97,9 @@ matchLoop: err = pingRes.err s.SetVerificationError(err, jdbcConn) } + s.AnalysisInfo = map[string]string{ + "connection_string": jdbcConn, + } // TODO: specialized redaction } diff --git a/pkg/detectors/jdbc/jdbc_test.go b/pkg/detectors/jdbc/jdbc_test.go index bf2e9100e..1ea66d2f9 100644 --- a/pkg/detectors/jdbc/jdbc_test.go +++ b/pkg/detectors/jdbc/jdbc_test.go @@ -134,6 +134,7 @@ func TestJdbc_FromChunk(t *testing.T) { t.Fatal("no raw secret present") } got[i].Raw = nil + got[i].AnalysisInfo = nil } if diff := pretty.Compare(got, tt.want); diff != "" { t.Errorf("Jdbc.FromData() %s diff: (-got +want)\n%s", tt.name, diff)