Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cYroG-00085p-6Z for pgadmin-hackers@arkaria.postgresql.org; Wed, 01 Feb 2017 10:06:40 +0000 Received: from localhost ([127.0.0.1] helo=postgresql.org) by malur.postgresql.org with smtp (Exim 4.84_2) (envelope-from ) id 1cYroF-0000p6-KD for pgadmin-hackers@arkaria.postgresql.org; Wed, 01 Feb 2017 10:06:39 +0000 Received: from makus.postgresql.org ([2001:4800:1501:1::229]) by malur.postgresql.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_CBC_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1cYro1-0000aG-Nr for pgadmin-hackers@postgresql.org; Wed, 01 Feb 2017 10:06:25 +0000 Received: from mail-lf0-x234.google.com ([2a00:1450:4010:c07::234]) by makus.postgresql.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_CBC_SHA1:256) (Exim 4.84_2) (envelope-from ) id 1cYrny-0007bZ-84 for pgadmin-hackers@postgresql.org; Wed, 01 Feb 2017 10:06:24 +0000 Received: by mail-lf0-x234.google.com with SMTP id v186so225797824lfa.1 for ; Wed, 01 Feb 2017 02:06:21 -0800 (PST) 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:from:date:message-id:subject:to :cc; bh=QIKTPQ//4ev2S4i1N9rdm4iNp7pPFDm6nlOyFbeOFsg=; b=OkMFMBUp9CQkhv3Hd2qORiHTK9A7hz9JTrtQevfGSSdM93zApJgg2iiEc0762m0L/m JFKbrUYknEFLVO176Fln2eYy7/krTxgkIwx4Ey38PLvnW31dYBCSDkDdh9wVCgwuYhcc lJQBTPaTPVhVJ76k81qoV7zGD8LKe8fWnk0Wdlv9k/HLo2hkzu+CeBuluTLuM5kYajx+ JwrddyY4q3ZXRVHgbaJPMOamnORWB5x6RTaR7JR/pdPX9NVLuRnrCIxHP5FU2wSfdCdB Y6xTagB0sJiPUVdghVbXqzyHQ0zFw9Wvj/L7Kus+gvQrV0410AcqmUHQPIyIRNFQIM+l KbAg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=QIKTPQ//4ev2S4i1N9rdm4iNp7pPFDm6nlOyFbeOFsg=; b=UpSwD1vDUVZInA8HvBeHiDyhuLrT1aCVO6wgAYLWHVcJFjAsMR8jFK6CbnS8NFL19i Z+XcI+WZPJDvmmqbVbqOslJECdTXuhvwrWolTM6spYW3Jfrk0uAs70NU6nxPVD07ziAf cRtSIDO7zsh9OX1u2xqj2uuMAIfbhX1NRUJwXmRblbiAtDt6RRMsukHSmzOhVrDV3P7+ gUe35yBq0Pu9APR+AM5xubvV+5bx+9Bwut/dMKrr9wnosDFSneWxhZuEMJecTzDt43EJ 4ZNOu738yqV5I5fb6zNeSa0M2Y0c5ennmqtebFT3KjeX4TQPv5WdGpA9aNSIhsqeAWCe b4QA== X-Gm-Message-State: AIkVDXK4cLGMmi+JGYtx0614DJTcw25QH11T6E/zN2NZn3eL4GJuaqUxGiaPbeQhU16dOJQZo/5eQFJ3a/qz/rkx X-Received: by 10.25.209.195 with SMTP id i186mr747737lfg.109.1485943579647; Wed, 01 Feb 2017 02:06:19 -0800 (PST) MIME-Version: 1.0 Received: by 10.25.163.9 with HTTP; Wed, 1 Feb 2017 02:06:19 -0800 (PST) In-Reply-To: References: From: Fahar Abbas Date: Wed, 1 Feb 2017 15:06:19 +0500 Message-ID: Subject: Re: [Patch] Show databases for Greenplum To: Dave Page Cc: George Gelashvili , pgadmin-hackers Content-Type: multipart/alternative; boundary=001a11419cf438b17305477533e0 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 --001a11419cf438b17305477533e0 Content-Type: text/plain; charset=UTF-8 I was also thinking with same pattern and we need to verify this change thoroughly. Thanks Dave. Regards, On Wed, Feb 1, 2017 at 2:59 PM, Dave Page wrote: > Thanks George, patch applied. > > Fahar; whilst this is a technically simple patch, it was also very > large. Please keep an eye out for any issues. > > On Tue, Jan 31, 2017 at 10:08 PM, George Gelashvili > wrote: > > Hi Hackers, > > > > We're working on https://redmine.postgresql.org/issues/2132 > > This patch allows pgAdmin to list databases and schemas when connected > to a > > Greenplum server. > > > > The fix was largely allowing pgadmin to load templates that work with > > Greenplum. To achieve this, we used the versioned template loader in more > > places where "9.1_plus" was previously hardcoded. > > We also created a set of "default" template directories so that Greenplum > > will load the templates that were tagged as 9.1 for now. > > > > Tira & George > > > > > > -- > > Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) > > To make changes to your subscription: > > http://www.postgresql.org/mailpref/pgadmin-hackers > > > > > > -- > Dave Page > Blog: http://pgsnake.blogspot.com > Twitter: @pgsnake > > EnterpriseDB UK: http://www.enterprisedb.com > The Enterprise PostgreSQL Company > -- Syed Fahar Abbas Quality Management Group EnterpriseDB Corporation Phone Office: +92-51-835-8874 Phone Direct: +92-51-8466803 Mobile: +92-333-5409707 Skype ID: syed.fahar.abbas Website: www.enterprisedb.com --001a11419cf438b17305477533e0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
I was also thinking with same pattern and we need to = verify this change thoroughly.

Thanks Dave.

Regard= s,

= On Wed, Feb 1, 2017 at 2:59 PM, Dave Page <dpage@pgadmin.org> wrote:
Thanks George= , patch applied.

Fahar; whilst this is a technically simple patch, it was also very
large. Please keep an eye out for any issues.

On Tue, Jan 31, 2017 at 10:08 PM, George Gelashvili
<ggelashvili@pivotal.io>= ; wrote:
> Hi Hackers,
>
> We're working on https://redmine.postgresql.= org/issues/2132
> This patch allows pgAdmin to list databases and schemas when connected= to a
> Greenplum server.
>
> The fix was largely allowing pgadmin to load templates that work with<= br> > Greenplum. To achieve this, we used the versioned template loader in m= ore
> places where "9.1_plus" was previously hardcoded.
> We also created a set of "default" template directories so t= hat Greenplum
> will load the templates that were tagged as 9.1 for now.
>
> Tira & George
>
>
> -- > Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgadm= in-hackers
>



--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company



--
Syed Fahar Abbas
= Quality Management Group

EnterpriseDB Corporation
Phone Off= ice: +92-51-835-8874
Phone Direct: +92-51-8466803
Mobile: +92-333-540= 9707
Skype ID: syed.fahar.abbas
Website: www.enterprisedb.com
--001a11419cf438b17305477533e0--