Skip to content

Commit a55ca2e

Browse files
authored
Fixes #8019 (#8109)
1 parent 8e44a97 commit a55ca2e

File tree

1 file changed

+1
-1
lines changed
  • ydb/library/yql/parser/pg_wrapper/postgresql/src/timezone

1 file changed

+1
-1
lines changed

ydb/library/yql/parser/pg_wrapper/postgresql/src/timezone/pgtz.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ pg_tzset(const char *tzname)
275275
/*
276276
* "GMT" is always sent to tzparse(), as per discussion above.
277277
*/
278-
if (strcmp(uppername, "GMT") == 0)
278+
if (strcmp(uppername, "GMT") == 0 || strcmp(uppername, "Z") == 0)
279279
{
280280
if (!tzparse(uppername, &tzstate, true))
281281
{

0 commit comments

Comments
 (0)