@@ -2930,7 +2930,10 @@ format(12345678901234567890.123, 3, 'en_US')
2930293012,345,678,901,234,567,890.123
29312931SELECT format(12345678901234567890.123, 3, 'it_CH');
29322932format(12345678901234567890.123, 3, 'it_CH')
2933- 12'345'678'901'234'567'890,123
2933+ 12'345'678'901'234'567'890.123
2934+ SELECT format(12345678901234567890.123, 3, 'it_IT');
2935+ format(12345678901234567890.123, 3, 'it_IT')
2936+ 12345678901234567890,123
29342937SELECT format(12345678901234567890.123, 3, 'ru_RU');
29352938format(12345678901234567890.123, 3, 'ru_RU')
2936293912 345 678 901 234 567 890,123
@@ -2955,7 +2958,7 @@ be_BY 12.345.678.901.234.567.890,123
29552958de_DE 12.345.678.901.234.567.890,123
29562959en_IN 1,23,45,67,89,01,23,45,67,890.123
29572960en_US 12,345,678,901,234,567,890.123
2958- it_CH 12'345'678'901'234'567'890, 123
2961+ it_CH 12'345'678'901'234'567'890. 123
29592962ru_RU 12 345 678 901 234 567 890,123
29602963ta_IN 1,23,45,67,89,01,23,45,67,890.123
29612964SELECT fmt, format(12345678901234567890.123, 0, fmt) FROM t1 ORDER BY fmt;
@@ -2977,7 +2980,7 @@ be_BY 12.345.678.901.234.567.890,000
29772980de_DE 12.345.678.901.234.567.890,000
29782981en_IN 1,23,45,67,89,01,23,45,67,890.000
29792982en_US 12,345,678,901,234,567,890.000
2980- it_CH 12'345'678'901'234'567'890, 000
2983+ it_CH 12'345'678'901'234'567'890. 000
29812984ru_RU 12 345 678 901 234 567 890,000
29822985ta_IN 1,23,45,67,89,01,23,45,67,890.000
29832986SELECT fmt, format(-12345678901234567890, 3, fmt) FROM t1 ORDER BY fmt;
@@ -2988,7 +2991,7 @@ be_BY -12.345.678.901.234.567.890,000
29882991de_DE -12.345.678.901.234.567.890,000
29892992en_IN -1,23,45,67,89,01,23,45,67,890.000
29902993en_US -12,345,678,901,234,567,890.000
2991- it_CH -12'345'678'901'234'567'890, 000
2994+ it_CH -12'345'678'901'234'567'890. 000
29922995ru_RU -12 345 678 901 234 567 890,000
29932996ta_IN -1,23,45,67,89,01,23,45,67,890.000
29942997SELECT fmt, format(-02345678901234567890, 3, fmt) FROM t1 ORDER BY fmt;
@@ -2999,7 +3002,7 @@ be_BY -2.345.678.901.234.567.890,000
29993002de_DE -2.345.678.901.234.567.890,000
30003003en_IN -23,45,67,89,01,23,45,67,890.000
30013004en_US -2,345,678,901,234,567,890.000
3002- it_CH -2'345'678'901'234'567'890, 000
3005+ it_CH -2'345'678'901'234'567'890. 000
30033006ru_RU -2 345 678 901 234 567 890,000
30043007ta_IN -23,45,67,89,01,23,45,67,890.000
30053008SELECT fmt, format(-00345678901234567890, 3, fmt) FROM t1 ORDER BY fmt;
@@ -3010,7 +3013,7 @@ be_BY -345.678.901.234.567.890,000
30103013de_DE -345.678.901.234.567.890,000
30113014en_IN -3,45,67,89,01,23,45,67,890.000
30123015en_US -345,678,901,234,567,890.000
3013- it_CH -345'678'901'234'567'890, 000
3016+ it_CH -345'678'901'234'567'890. 000
30143017ru_RU -345 678 901 234 567 890,000
30153018ta_IN -3,45,67,89,01,23,45,67,890.000
30163019SELECT fmt, format(-00045678901234567890, 3, fmt) FROM t1 ORDER BY fmt;
@@ -3021,7 +3024,7 @@ be_BY -45.678.901.234.567.890,000
30213024de_DE -45.678.901.234.567.890,000
30223025en_IN -45,67,89,01,23,45,67,890.000
30233026en_US -45,678,901,234,567,890.000
3024- it_CH -45'678'901'234'567'890, 000
3027+ it_CH -45'678'901'234'567'890. 000
30253028ru_RU -45 678 901 234 567 890,000
30263029ta_IN -45,67,89,01,23,45,67,890.000
30273030DROP TABLE t1;
0 commit comments