@@ -229,7 +229,7 @@ format(123456789,2) as b,
229229format(123456789,2,'rm_CH') as b1;
230230select * from v1;
231231a a1 b b1
232- 10 Oct October 10 Окт Октября 123,456,789.00 123'456'789,00
232+ 10 Oct October 10 Окт октября 123,456,789.00 123'456'789,00
233233show create view v1;
234234View Create View character_set_client collation_connection
235235v1 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select date_format('2001-10-02','%c %b %M') AS `a`,date_format('2001-10-02','%c %b %M','ru_RU') AS `a1`,format(123456789,2) AS `b`,format(123456789,2,'rm_CH') AS `b1` utf8mb3 utf8mb3_uca1400_ai_ci
@@ -369,3 +369,19 @@ SET lc_messages=DEFAULT;
369369#
370370# End of 10.11 tests
371371#
372+ SET lc_time_names=uk_UA;
373+ SELECT monthname('2001-10-01'), monthname('2001-02-15'), monthname('2001-03-30');
374+ monthname('2001-10-01') monthname('2001-02-15') monthname('2001-03-30')
375+ жовтень лютий березень
376+ SELECT date_format('2026-10-01','%d %M %Y'), date_format('2026-08-24','%d %M %Y'), date_format('2026-01-22','%d %M %Y');
377+ date_format('2026-10-01','%d %M %Y') date_format('2026-08-24','%d %M %Y') date_format('2026-01-22','%d %M %Y')
378+ 01 жовтня 2026 24 серпня 2026 22 січня 2026
379+ SET lc_time_names=be_BY;
380+ SELECT date_format('2026-10-01','%d %M %Y'), date_format('2026-08-24','%d %M %Y'), date_format('2026-01-22','%d %M %Y');
381+ date_format('2026-10-01','%d %M %Y') date_format('2026-08-24','%d %M %Y') date_format('2026-01-22','%d %M %Y')
382+ 01 кастрычніка 2026 24 жніўня 2026 22 студзеня 2026
383+ SET lc_time_names=eu_ES;
384+ SELECT date_format('2026-04-16','%d %M %Y'), date_format('2026-08-24','%d %M %Y'), date_format('2026-01-22','%d %M %Y');
385+ date_format('2026-04-16','%d %M %Y') date_format('2026-08-24','%d %M %Y') date_format('2026-01-22','%d %M %Y')
386+ 16 apirilak 2026 24 abuztuak 2026 22 urtarrilak 2026
387+ SET lc_time_names=DEFAULT;
0 commit comments