Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 927e1ee

Browse files
committed
UCS_to_most.pl: Process encodings in sorted order
Otherwise the order depends on the Perl hash implementation, making it cumbersome to scan the output when debugging.
1 parent bf54c0f commit 927e1ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/utils/mb/Unicode/UCS_to_most.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
'GBK' => 'CP936.TXT');
5151

5252
# make maps for all encodings if not specified
53-
my @charsets = (scalar(@ARGV) > 0) ? @ARGV : keys(%filename);
53+
my @charsets = (scalar(@ARGV) > 0) ? @ARGV : sort keys(%filename);
5454

5555
foreach my $charset (@charsets)
5656
{

0 commit comments

Comments
 (0)