diff options
Diffstat (limited to 'mysql-test/suite/plugins/t/locales.test')
-rw-r--r-- | mysql-test/suite/plugins/t/locales.test | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/suite/plugins/t/locales.test b/mysql-test/suite/plugins/t/locales.test index 5cfbe697384..a3afe75046f 100644 --- a/mysql-test/suite/plugins/t/locales.test +++ b/mysql-test/suite/plugins/t/locales.test @@ -4,4 +4,10 @@ if (`select count(*) = 0 from information_schema.plugins where plugin_name = 'lo } select * from information_schema.locales; +show locales; +--error ER_PARSE_ERROR +show locales like '%spanish%'; +show locales where description like '%spanish%'; +--error ER_PARSE_ERROR +flush locales; |