- Notifications
You must be signed in to change notification settings - Fork28
Commit7f28fc8
committed
Prefer timezone name "UTC" over alternative spellings.
tzdb 2019a made "UCT" a link to the "UTC" zone rather than a separatezone with its own abbreviation. Unfortunately, our code for choosing atimezone in initdb has an arbitrary preference for names earlier inthe alphabet, and so it would choose the spelling "UCT" over "UTC"when the system is running on a UTC zone.Commit23bd3ce was backpatched in order to address this issue, butthat code helps only when /etc/localtime exists as a symlink, and doesnothing to help on systems where /etc/localtime is a copy of a zonefile (as is the standard setup on FreeBSD and probably some otherplatforms too) or when /etc/localtime is simply absent (giving UTC asthe default).Accordingly, add a preference for the spelling "UTC", such that ifmultiple zone names have equally good content matches, we prefer thatname before applying the existing arbitrary rules. Also add a slightlylower preference for "Etc/UTC"; lower because that preserves theprevious behaviour of choosing the shorter name, but letting us stillchoose "Etc/UTC" over "Etc/UCT" when both exist but "UTC" doesnot (not common, but I've seen it happen).Backpatch all the way, because the tzdb change that sparked this issueis in those branches too.1 parent0995cef commit7f28fc8
1 file changed
+34
-5
lines changedLines changed: 34 additions & 5 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
128 | 128 |
| |
129 | 129 |
| |
130 | 130 |
| |
131 |
| - | |
132 |
| - | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
133 | 136 |
| |
134 | 137 |
| |
135 | 138 |
| |
| |||
602 | 605 |
| |
603 | 606 |
| |
604 | 607 |
| |
| 608 | + | |
| 609 | + | |
| 610 | + | |
| 611 | + | |
| 612 | + | |
| 613 | + | |
| 614 | + | |
| 615 | + | |
| 616 | + | |
| 617 | + | |
| 618 | + | |
| 619 | + | |
| 620 | + | |
| 621 | + | |
| 622 | + | |
| 623 | + | |
| 624 | + | |
| 625 | + | |
| 626 | + | |
| 627 | + | |
| 628 | + | |
| 629 | + | |
605 | 630 |
| |
606 | 631 |
| |
607 | 632 |
| |
| |||
674 | 699 |
| |
675 | 700 |
| |
676 | 701 |
| |
677 |
| - | |
678 |
| - | |
679 |
| - | |
| 702 | + | |
| 703 | + | |
| 704 | + | |
| 705 | + | |
| 706 | + | |
| 707 | + | |
| 708 | + | |
680 | 709 |
| |
681 | 710 |
| |
682 | 711 |
| |
|
0 commit comments
Comments
(0)