Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1qwLpm-00BFiN-Gn for pgsql-hackers@arkaria.postgresql.org; Fri, 27 Oct 2023 12:21:02 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.94.2) (envelope-from ) id 1qwLpk-00F945-Uv for pgsql-hackers@arkaria.postgresql.org; Fri, 27 Oct 2023 12:21:00 +0000 Received: from magus.postgresql.org ([2a02:c0:301:0:ffff::29]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1qwLpk-00F93x-Le for pgsql-hackers@lists.postgresql.org; Fri, 27 Oct 2023 12:21:00 +0000 Received: from mx.wagner.pp.ru ([2a01:4f8:c17:2e5b::2]) by magus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1qwLph-0036k0-F9 for pgsql-hackers@lists.postgresql.org; Fri, 27 Oct 2023 12:21:00 +0000 Received: from wagner.wagner.home (unknown [IPv6:2a02:2168:ab09:9800::bf3]) by mx.wagner.pp.ru (Postfix) with ESMTPSA id 0ADE4E0186 for ; Fri, 27 Oct 2023 15:20:53 +0300 (MSK) Date: Fri, 27 Oct 2023 15:20:49 +0300 From: Victor Wagner To: PostgreSQL Hackers Subject: Enderbury Island disappeared from timezone database Message-ID: <20231027152049.4b5c8044@wagner.wagner.home> X-Mailer: Claws Mail 4.1.1 (GTK 3.24.38; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk Collegues, I've encountered following problem compiling PostgreSQL 15.4 with just released Ubuntu 23.10. I'm compiling postgres with --with-system-tzdata and then regression test sysviews fails with following diff: --- /home/test/pg-tests/postgresql-15.4/src/test/regress/expected/sysviews.out 2023-10-26 19:06:02.000000000 +0000 +++ /home/test/pg-tests/postgresql-15.4/src/test/regress/results/sysviews.out 2023-10-27 07:10:22.214698986 +0000 @@ -147,23 +147,14 @@ (1 row) select count(distinct utc_offset) >= 24 as ok from pg_timezone_abbrevs; - ok ----- - t -(1 row) - +ERROR: time zone "Pacific/Enderbury" not recognized +DETAIL: This time zone name appears in the configuration file for time zone abbreviation "phot". with more such errors follows. Investigation shows, that this timezone was long ago declared deprecated, and eventually disappeared from tzdata package in Ubuntu even as symlink to Pasific/Kanton (which is equivalent). But this timezone present in src/timezone/tznames/Default, so this error message is appears any time one access pg_timezone_abbrevs regardless of Pacific region is included in results or not. May be, Enderbury should be replaced by Kanton in src/timezone/tznames/Default and src/timezone/tznames/Pacific.txt? -- Victor Wagner