Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtp (Exim 4.84_2) (envelope-from ) id 1axuqF-0003So-2O for pgadmin-hackers@arkaria.postgresql.org; Wed, 04 May 2016 11:19:43 +0000 Received: from localhost ([127.0.0.1] helo=postgresql.org) by malur.postgresql.org with smtp (Exim 4.84_2) (envelope-from ) id 1axuqE-0002pe-Kw for pgadmin-hackers@arkaria.postgresql.org; Wed, 04 May 2016 11:19:42 +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.84_2) (envelope-from ) id 1axuqE-0002pY-AL for pgadmin-hackers@postgresql.org; Wed, 04 May 2016 11:19:42 +0000 Received: from mail-lf0-x236.google.com ([2a00:1450:4010:c07::236]) by magus.postgresql.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_CBC_SHA1:256) (Exim 4.84_2) (envelope-from ) id 1axuqB-00017J-16 for pgadmin-hackers@postgresql.org; Wed, 04 May 2016 11:19:41 +0000 Received: by mail-lf0-x236.google.com with SMTP id j8so55469523lfd.2 for ; Wed, 04 May 2016 04:19:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=enterprisedb-com.20150623.gappssmtp.com; s=20150623; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc; bh=umSga15Era/Q/dPgcbe9v0Y0432Y4l8YD+JWX5l1uHE=; b=Uu6+QBPzt0iJxBVnwcWyDaIXv/KU+QVbKyrDwx6+pitLKZUVju7lXsf9GJ9iou1fUG 6cMt2VlRGIXImXejjbGp4bI5zNPRI0Fa0CAW9kIboYqfkL1zhsNP0gbU1dSPgrs6/0CO VglDNtXVsv4xSyBi/OiFP/su+vYC+oA1UVJw0JiP5+vXpKoaVQ/qe+lsP4S6NiS5bix6 B6H+oyW9RzFcjBVF9GSNddROPqf/ZK6N7vMeyYAPuCpf8ZAgNWnpIC+d/QcXp7UzpLhW K+t+V9g3+LdIaEAcjQCHm6rIS8Oz5pGPmAC5x4QVziFOrmAMu9Ig/n06Fks/Y9gRhEYQ Xq8g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc; bh=umSga15Era/Q/dPgcbe9v0Y0432Y4l8YD+JWX5l1uHE=; b=liJIQw/PkBxDvBs0XELhi4yO5onf/4El+2YgtKxKmLHvFiZrkRY85rMdFrBFkgEQ5G t3VSzfBo1CVAf4rSNU1hg7ph1LhMrpArwNiKrflgWIJO+bVME8dzpHt0ZnL3GtJr+RNE aJXup/bmNB3ckYsWrbNG2sucSO7d4g/hALZ7PnV5AzKvy6TzeY8NSEKvtm2KbwCJ+h1n DJ+nXmWfdJ7kplB+s6TRgGRBy0DS8rQ+ZxO0u/8OX6C735Mh/+98Lt9aXe/9aZHe4faK M6w5eSXcafTv6ESuXF9y61z/Ey6ifeBHH7ZT+RkANugqUflficj2ocGXCvVYocz2yiVa LmNw== X-Gm-Message-State: AOPr4FVreGphTpROIIpfWNrx8jTBkbih/DsMypeB5tZEyhljleTN0EIiQBlmz2HyFLfMGkfIT/gAIyIzkFTQiJ8e MIME-Version: 1.0 X-Received: by 10.25.151.20 with SMTP id z20mr3846348lfd.92.1462360778123; Wed, 04 May 2016 04:19:38 -0700 (PDT) Received: by 10.25.144.81 with HTTP; Wed, 4 May 2016 04:19:38 -0700 (PDT) In-Reply-To: References: Date: Wed, 4 May 2016 16:49:38 +0530 Message-ID: Subject: Re: [pgAdmin4] [Patch]: Foreign Table Module From: Khushboo Vashi To: Dave Page Cc: pgadmin-hackers Content-Type: multipart/alternative; boundary=001a11401516b6be9f05320266dc X-Pg-Spam-Score: -2.6 (--) List-Archive: List-Help: List-ID: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: X-Mailing-List: pgadmin-hackers Precedence: bulk Sender: pgadmin-hackers-owner@postgresql.org --001a11401516b6be9f05320266dc Content-Type: text/plain; charset=UTF-8 Hi, On Wed, May 4, 2016 at 4:37 PM, Dave Page wrote: > Hi > > On Wed, May 4, 2016 at 7:51 AM, Khushboo Vashi > wrote: > > Hi Dave, > > > > In PG 9.5, for Foreign Table Editing, below new functionalities are > added: > > > > ALTER [ COLUMN ] column_name SET STORAGE { PLAIN | EXTERNAL | EXTENDED | > > MAIN } > > DISABLE TRIGGER [ trigger_name | ALL | USER ] > > ENABLE TRIGGER [ trigger_name | ALL | USER ] > > ENABLE REPLICA TRIGGER trigger_name > > ENABLE ALWAYS TRIGGER trigger_name > > SET WITH OIDS > > SET WITHOUT OIDS > > > > As per our conversation yesterday, we need to incorporate these > > functionalities into pgAdmin4. Here I have some queries regarding the > > implementation. Under the Foreign Table Node, we don't have separate > nodes > > for columns, triggers and constraints as table. So in order to add above > > Trigger related functionalities, we will have to add Trigger Node under > the > > Foreign Table. And If we add Triggers, then Do we need to add Columns and > > Constraints as separate nodes under the Foreign Table? > > Following discussion with Ashesh and some further thought, please put > these enhancements on hold. We'll add them in a future release, as > it's just too much work to do right now. > > Okay. > Please add a TODO file to the root directory of pgAdmin 4, and add > these as items for later completion. > > Sure. I will do that. > Thanks. > > -- > Dave Page > VP, Chief Architect, Tools & Installers > EnterpriseDB: http://www.enterprisedb.com > The Enterprise PostgreSQL Company > > Blog: http://pgsnake.blogspot.com > Twitter: @pgsnake > --001a11401516b6be9f05320266dc Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
Hi,

On Wed, May 4, 2016 at 4:37 PM, Dave Page <= ;dave.page@= enterprisedb.com> wrote:
Hi=

On Wed, May 4, 2016 at 7:51 AM, Khushboo Vashi
<khushboo.vashi@enter= prisedb.com> wrote:
> Hi Dave,
>
> In PG 9.5, for Foreign Table Editing, below new functionalities are ad= ded:
>
> ALTER [ COLUMN ] column_name SET STORAGE { PLAIN | EXTERNAL | EXTENDED= |
> MAIN }
> DISABLE TRIGGER [ trigger_name | ALL | USER ]
> ENABLE TRIGGER [ trigger_name | ALL | USER ]
> ENABLE REPLICA TRIGGER trigger_name
> ENABLE ALWAYS TRIGGER trigger_name
> SET WITH OIDS
> SET WITHOUT OIDS
>
> As per our conversation yesterday, we need to incorporate these
> functionalities into pgAdmin4. Here I have some queries regarding the<= br> > implementation. Under the Foreign Table Node, we don't have separa= te nodes
> for columns, triggers and constraints as table. So in order to add abo= ve
> Trigger related functionalities, we will have to add Trigger Node unde= r the
> Foreign Table. And If we add Triggers, then Do we need to add Columns = and
> Constraints as separate nodes under the Foreign Table?

Following discussion with Ashesh and some further thought, please pu= t
these enhancements on hold. We'll add them in a future release, as
it's just too much work to do right now.

Okay.
= =C2=A0
Please add a TODO file to the root directory of pgAdmin 4, and add
these as items for later completion.

Sure. I will do th= at.
=C2=A0
Thanks.

--
Dave Page
VP, Chief Architect, Tools & Installers
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

--001a11401516b6be9f05320266dc--