forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commitae9b91b
committed
Avoid choosing "localtime" or "posixrules" as TimeZone during initdb.
Some platforms create a file named "localtime" in the systemtimezone directory, making it a copy or link to the active timezone file. If Postgres is built with --with-system-tzdata, initdbwill see that file as an exact match to localtime(3)'s behavior,and it may decide that "localtime" is the most preferred spelling ofthe active zone. That's a very bad choice though, because it'sneither informative, nor portable, nor stable if someone changesthe system timezone setting. Extend the preference logic added bycommite3846a0 so that we will prefer any other zone file thatmatches localtime's behavior over "localtime".On the same logic, also discriminate against "posixrules", whichis another not-really-a-zone file that is often present in thetimezone directory. (Since we install "posixrules" but not"localtime", this change can affect the behavior of Postgreswith or without --with-system-tzdata.)Note that this change doesn't prevent anyone from choosing thesepseudo-zones if they really want to (i.e., by setting TZ for initdb,or modifying the timezone GUC later on). It just prevents initdbfrom preferring these zone names when there are multiple matches tolocaltime's behavior.Since we generally prefer to keep timezone-related behavior thesame in all branches, and since this is arguably a bug fix,back-patch to all supported branches.Discussion:https://postgr.es/m/CADT4RqCCnj6FKLisvT8tTPfTP4azPhhDFJqDF1JfBbOH5w4oyQ@mail.gmail.comDiscussion:https://postgr.es/m/27991.1560984458@sss.pgh.pa.us1 parentfa85411 commitae9b91b
1 file changed
+14
-8
lines changedLines changed: 14 additions & 8 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
608 | 608 |
| |
609 | 609 |
| |
610 | 610 |
| |
611 |
| - | |
612 |
| - | |
613 |
| - | |
614 |
| - | |
615 |
| - | |
616 |
| - | |
617 |
| - | |
618 |
| - | |
| 611 | + | |
619 | 612 |
| |
620 | 613 |
| |
621 | 614 |
| |
622 | 615 |
| |
| 616 | + | |
| 617 | + | |
| 618 | + | |
| 619 | + | |
623 | 620 |
| |
624 | 621 |
| |
625 | 622 |
| |
626 | 623 |
| |
| 624 | + | |
| 625 | + | |
| 626 | + | |
| 627 | + | |
| 628 | + | |
| 629 | + | |
| 630 | + | |
| 631 | + | |
| 632 | + | |
627 | 633 |
| |
628 | 634 |
| |
629 | 635 |
| |
|
0 commit comments
Comments
(0)