[GENERAL] Alias field names in foreign data wrapper?

2015-03-27 Thread Deven Phillips
I am trying out some ideas using FDW, and I have added some FDW tables which access a backend MySQL DB... Unfortunately, I am getting some errors because of fields names with reserved words. I was wondering if there is a way to alias a field name when creating the foreign table? Thanks in

Re: [GENERAL] Alias field names in foreign data wrapper?

2015-03-27 Thread Deven Phillips
Yes. Here's the MySQL schema: CREATE TABLE `liquorstore_backendipaddress` ( `id` int(11) NOT NULL AUTO_INCREMENT, `backend_network_id` int(11) DEFAULT NULL, `backend_virtual_interface_id` int(11) DEFAULT NULL, `address` varchar(15) NOT NULL, `is_gateway` tinyint(1) NOT NULL,

Re: [GENERAL] Alias field names in foreign data wrapper?

2015-03-27 Thread Adrian Klaver
On 03/27/2015 02:20 PM, Deven Phillips wrote: Yes. Here's the MySQL schema: CREATE TABLE `liquorstore_backendipaddress` ( `id` int(11) NOT NULL AUTO_INCREMENT, `backend_network_id` int(11) DEFAULT NULL, `backend_virtual_interface_id` int(11) DEFAULT NULL, `address` varchar(15) NOT

Re: [GENERAL] Alias field names in foreign data wrapper?

2015-03-27 Thread Adrian Klaver
On 03/27/2015 01:55 PM, Deven Phillips wrote: Better example of the problem... My FDW table schema is: CREATE FOREIGN TABLE liquorstore_backendipaddress ( id bigint NOT NULL, backend_network_id bigint, backend_virtual_interface_id bigint, address character varying(15) NOT

Re: [GENERAL] Alias field names in foreign data wrapper?

2015-03-27 Thread Deven Phillips
Better example of the problem... My FDW table schema is: CREATE FOREIGN TABLE liquorstore_backendipaddress ( id bigint NOT NULL, backend_network_id bigint, backend_virtual_interface_id bigint, address character varying(15) NOT NULL, is_gateway boolean NOT NULL, is_reserved

Re: [GENERAL] Alias field names in foreign data wrapper?

2015-03-27 Thread David G. Johnston
On Fri, Mar 27, 2015 at 1:55 PM, Deven Phillips deven.phill...@gmail.com wrote: Better example of the problem... My FDW table schema is: CREATE FOREIGN TABLE liquorstore_backendipaddress ( id bigint NOT NULL, backend_network_id bigint, backend_virtual_interface_id bigint,

Re: [GENERAL] Alias field names in foreign data wrapper?

2015-03-27 Thread Deven Phillips
OK, one of the devs on the GitHub page for that FDW helped me realize that I had accidentally mapped the wrong table! Doh! Deven On Fri, Mar 27, 2015 at 5:31 PM, Adrian Klaver adrian.kla...@aklaver.com wrote: On 03/27/2015 02:20 PM, Deven Phillips wrote: Yes. Here's the MySQL schema:

Re: [GENERAL] Alias field names in foreign data wrapper?

2015-03-27 Thread Adrian Klaver
On 03/27/2015 03:04 PM, Deven Phillips wrote: OK, one of the devs on the GitHub page for that FDW helped me realize that I had accidentally mapped the wrong table! Doh! Me looks back. Oops, missed that. Deven -- Adrian Klaver adrian.kla...@aklaver.com -- Sent via pgsql-general mailing