TR: pgadmin not displaying data from postgresql_fdw

From: Olivier Leprêtre <o(dot)lepretre(at)gmail(dot)com>
To: <pgsql-hackers(at)lists(dot)postgresql(dot)org>
Subject: TR: pgadmin not displaying data from postgresql_fdw
Date: 2018-08-31 08:22:31
Message-ID: 5b88fac9.1c69fb81.eb7d0.bcbd@mx.google.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hi,

Please find a question that didn't get an answer in the pgsql-sql list. I
hope I'll get an answer here.

Thanks,

Olivier

De : Olivier Leprêtre [mailto:o(dot)lepretre(at)gmail(dot)com]
Envoyé : mardi 28 août 2018 17:37
À : 'pgsql-sql(at)lists(dot)postgresql(dot)org'
Objet : pgadmin not displaying data from postgresql_fdw

Hi,

When doing some testing about postgresql_fdw extension to connect local and
remote databases, I was surprised to notice that the local connected schema
seems to have no table in pgadmin 3 or pgadmin 4 trees.

Those commands ran fine :

CREATE SERVER fdw _prod01 FOREIGN DATA WRAPPER postgres_fdw OPTIONS (host
'localhost', dbname '_prod01', port '5433');

CREATE USER MAPPING FOR postgres SERVER fdw_prod01 OPTIONS (user 'postgres',
password '');

CREATE SCHEMA fdw_prod01a;

IMPORT FOREIGN SCHEMA pre_prod FROM SERVER fdw_prod01 INTO fdw_prod01a;

It's then possible to apply select, insert or delete commands on fdw_prod01a
schema. Going to the 'remote' database shows inserted data into pre_prod
schema.

this command returns tables list from local fdw_prod01a :

SELECT distinct table_schema,table_name FROM information_schema.TABLES where
table_schema = 'fdw_prod01a'

So everything seems fine, except the pgadmin tree which does not display any
table under the fdw_prod01 branch, even if it's possible to query it's
tables with sql.

Did I forget something ? Is that a bug ? Does postgresql_fdw store
informations in such a way that pgadmin is not able to get them, even when
they exists in pg tables ?

Thanks for any answer,

Olivier

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Masahiko Sawada 2018-08-31 08:35:54 Re: [HACKERS] Proposal to add work_mem option to postgres_fdw module
Previous Message Masahiko Sawada 2018-08-31 08:18:26 Re: CREATE ROUTINE MAPPING