Re: PostgreSQL 9.5, mysql_fdw, and IMPORT FOREIGN SCHEMA question

From: Deven Phillips <deven(dot)phillips(at)gmail(dot)com>
To: Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com>
Cc: "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org>
Subject: Re: PostgreSQL 9.5, mysql_fdw, and IMPORT FOREIGN SCHEMA question
Date: 2016-01-09 04:38:21
Message-ID: CAJw+4NA2VmRNn9vbycPnj9vVpsB4E+CaCR5Uhq3QYBy2kkGr0A@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Apparently not, though I have done so in the past on PostgreSQL 9.4. It
appears to be related to the "schema" with which the foreign table is
associated:

mydb=# CREATE FOREIGN TABLE customer (
id BIGINT,
name VARCHAR(150),
parent_id BIGINT,
oracle_id BIGINT,
last_updated_time TIMESTAMP,
created_time TIMESTAMP) SERVER mysql;
CREATE FOREIGN TABLE
mydb=# SELECT * FROM customer;
ERROR: failed to prepare the MySQL query:
Table 'public.customer' doesn't exist

Any suggestions would be greatly appreciated!

Deven

On Fri, Jan 8, 2016 at 10:26 AM, Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com>
wrote:

> On 01/08/2016 07:04 AM, Deven Phillips wrote:
>
>> Hi all,
>>
>> I installed the newly released PostgreSQL 9.5 this morning and
>> compiled the latest mysql_fdw extension from EnterpriseDB. I was able to
>> create the SERVER and USER MAPPING, but I cannot seem to get IMPORT
>> FOREIGN SCHEMA to do anything. The command executes without error, but
>> none of the table schemas are imported from the MySQL DB. Does anyone
>> have any advice, links, documentation which might be of help?
>>
>
> Can you CREATE FOREIGN TABLE and use it?
>
>
>> Thanks in advance!
>>
>> Deven
>>
>
>
> --
> Adrian Klaver
> adrian(dot)klaver(at)aklaver(dot)com
>

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message drum.lucas@gmail.com 2016-01-09 04:44:05 New Slave - timeline ERROR
Previous Message Tom Lane 2016-01-09 00:13:59 Re: pg_upgrade 9.4 -> 9.5 with pg_trgm fails for me