Received: from malur.postgresql.org ([2a02:16a8:dc51::56]) by arkaria.postgresql.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_CBC_SHA384:256) (Exim 4.89) (envelope-from ) id 1flDog-0002tm-1U for pgsql-docs@arkaria.postgresql.org; Thu, 02 Aug 2018 13:38:58 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.89) (envelope-from ) id 1flDod-0002WH-Cp for pgsql-docs@arkaria.postgresql.org; Thu, 02 Aug 2018 13:38:55 +0000 Received: from magus.postgresql.org ([2a02:c0:301:0:ffff::29]) by malur.postgresql.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_CBC_SHA384:256) (Exim 4.89) (envelope-from ) id 1flDod-0002WA-79 for pgsql-docs@lists.postgresql.org; Thu, 02 Aug 2018 13:38:55 +0000 Received: from sss.pgh.pa.us ([66.207.139.130]) by magus.postgresql.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_CBC_SHA384:256) (Exim 4.89) (envelope-from ) id 1flDoZ-00066u-Rn for pgsql-docs@lists.postgresql.org; Thu, 02 Aug 2018 13:38:54 +0000 Received: from sss1.sss.pgh.pa.us (localhost [127.0.0.1]) by sss.pgh.pa.us (8.14.4/8.14.4) with ESMTP id w72DckY3022992; Thu, 2 Aug 2018 09:38:46 -0400 From: Tom Lane To: mgridinas@gmail.com cc: pgsql-docs@lists.postgresql.org Subject: Re: regarding dblink_fdw In-reply-to: <153311825251.1404.12794960263239894009@wrigleys.postgresql.org> References: <153311825251.1404.12794960263239894009@wrigleys.postgresql.org> Comments: In-reply-to =?utf-8?q?PG_Doc_comments_form?= message dated "Wed, 01 Aug 2018 10:10:52 -0000" MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <22990.1533217126.1@sss.pgh.pa.us> Date: Thu, 02 Aug 2018 09:38:46 -0400 Message-ID: <22991.1533217126@sss.pgh.pa.us> List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Precedence: bulk =?utf-8?q?PG_Doc_comments_form?= writes: > * dblink_fdw data wrapper does not seem to be available by default with > postgresql10 > * dblink_fdw extension does not seem to be distributed with postgresql10 > * dblink_fdw extension does not seem to be mentioned in appendix F. > Additional Supplied Modules. dblink_fdw is provided by the dblink extension. There's an example of how to use it in the dblink docs. Depending on whose packaging you're using, you might need to install a "contrib" subpackage to get access to the appendix-F modules. If you've successfully created the dblink extension in a given database, and yet you still don't see any dblink_fdw, you might need to "alter extension update" to bring dblink to something newer than 1.0. regards, tom lane