Re: 9.3-beta postgres-fdw COPY error

From: Adrian Klaver <adrian(dot)klaver(at)gmail(dot)com>
To: Lonni J Friedman <netllama(at)gmail(dot)com>
Cc: pgsql-general <pgsql-general(at)postgresql(dot)org>
Subject: Re: 9.3-beta postgres-fdw COPY error
Date: 2013-06-21 17:52:55
Message-ID: 51C492F7.8090405@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 06/21/2013 10:39 AM, Lonni J Friedman wrote:
> Greetings,
> I'm trying to test out the new postgres-fdw support in postgresql-9.3
> (beta) in preparation for an upgrade from 9.2 later this year. So
> far, everything is working ok, however one problem I'm encountering is
> with the COPY command. When I run it against a foreign table (which is
> also in a 9.3 instance), it fails:
>
> COPY my_foreigntbl (id,testname) TO '/tmp/testlist_aid' (DELIMITER ',');
> ERROR: cannot copy from foreign table "my_foreigntbl"
>
>
> Is this expected behavior or a bug?

Expected I believe:

http://www.postgresql.org/docs/9.3/static/postgres-fdw.html

"Now you need only SELECT from a foreign table to access the data stored
in its underlying remote table. You can also modify the remote table
using INSERT, UPDATE, or DELETE. "

>
> thanks!
>
>

--
Adrian Klaver
adrian(dot)klaver(at)gmail(dot)com

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Alban Hertroys 2013-06-21 17:54:02 Re: type-casting failures
Previous Message Lonni J Friedman 2013-06-21 17:39:31 9.3-beta postgres-fdw COPY error