Re: Failure of postgres_fdw because of TimeZone setting

From: Adnan Dautovic <daut(at)mailbox(dot)org>
To: Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Failure of postgres_fdw because of TimeZone setting
Date: 2024-04-05 09:39:04
Message-ID: 0849E257-0A15-4C2F-A41B-7E0E4B716CAE@mailbox.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Dear Adrian,

Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com> wrote:
>Define 'read-only', especially as it applies to the privileges on the
>public schema.

I am not quite sure which information you are looking for
exactly. According to this [1], I ran the following query:

WITH "names"("name") AS (
SELECT n.nspname AS "name"
FROM pg_catalog.pg_namespace n
WHERE n.nspname !~ '^pg_'
AND n.nspname <> 'information_schema'
) SELECT "name",
pg_catalog.has_schema_privilege(current_user, "name", 'CREATE') AS
"create",
pg_catalog.has_schema_privilege(current_user, "name", 'USAGE') AS "usage"
FROM "names";

And recieved the following result:

"name" "create" "usage"
"public" true true

>Per Tom Lane's comments on timezone, log into the remote server and do:
>
>SHOW timezone;
Europe/Berlin

>SET timezone = 'etc/UTC';
ERROR: invalid value for parameter "TimeZone": "etc/UTC"
SQL state: 22023

>SET timezone = 'UTC';
ERROR: invalid value for parameter "TimeZone": "UTC"
SQL state: 22023

However, this lead me to [2] and I find the output very
interesting:

SELECT * FROM pg_timezone_names ORDER BY name;

>"name" "abbrev" "utc_offset" "is_dst"
>"Turkey" "+03" "03:00:00" false
>"UCT" "UCT" "00:00:00" false
>"Universal" "UTC" "00:00:00" false
>"W-SU" "MSK" "03:00:00" false

And then attempting

SET timezone = 'Universal';

>SET
>Query returned successfully in 100 msec.

Any ideas on how to proceed?

Kind regards,

Adnan Dautovic

[1]: https://stackoverflow.com/a/36095257
[2]: https://stackoverflow.com/a/32009497

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2024-04-05 14:13:38 Re: Failure of postgres_fdw because of TimeZone setting
Previous Message Adnan Dautovic 2024-04-05 09:22:32 Re: Failure of postgres_fdw because of TimeZone setting