mirror of
https://github.com/MariaDB/server.git
synced 2025-02-12 00:15:35 +01:00
cacea31687
As requested to the UN the country formerly known as Turkey is to be refered to as Türkiye. Reviewer: Alexander Barkov
14 lines
373 B
Text
14 lines
373 B
Text
if (`select count(*) = 0 from information_schema.plugins where plugin_name = 'locales' and plugin_status='active'`)
|
|
{
|
|
--skip LOCALES plugin is not active
|
|
}
|
|
SET names utf8;
|
|
|
|
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;
|
|
|