mirror of
https://github.com/postgres/postgres.git
synced 2025-05-01 01:04:50 +03:00
Fix bogus timetz_zone() results for DYNTZ abbreviations.
timetz_zone() delivered completely wrong answers if the zone was specified by a dynamic TZ abbreviation, because it failed to account for the difference between the POSIX conventions for field values in struct pg_tm and the conventions used in PG-specific datetime code. As a stopgap fix, just adjust the tm_year and tm_mon fields to match PG conventions. This is fixed in a different way in HEAD (388e71af8) but I don't want to back-patch the change of reference point. Discussion: https://postgr.es/m/CAJ7c6TOMG8zSNEZtCn5SPe+cCk3Lfxb71ZaQwT2F4T7PJ_t=KA@mail.gmail.com
This commit is contained in:
parent
9f9ae019d1
commit
d8a266c5e1
@ -2832,6 +2832,8 @@ timetz_zone(PG_FUNCTION_ARGS)
|
||||
struct pg_tm *tm;
|
||||
|
||||
tm = pg_localtime(&now, tzp);
|
||||
tm->tm_year += 1900; /* adjust to PG conventions */
|
||||
tm->tm_mon += 1;
|
||||
tz = DetermineTimeZoneAbbrevOffset(tm, tzname, tzp);
|
||||
}
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user