[pgAdmin4][Patch]: RM #3742 ALTER COLUMN bug

2018-11-19 Thread Akshay Joshi
Hi Hackers, Attached is the patch to fix the RM #3742 "ALTER COLUMN bug". Please review it. -- *Akshay Joshi* *Sr. Software Architect * *Phone: +91 20-3058-9517Mobile: +91 976-788-8246* RM_3742.patch Description: Binary data

pgAdmin 4 commit: Don't double-list the connecting page in the index.

2018-11-19 Thread Dave Page
Don't double-list the connecting page in the index. Branch -- master Details --- https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=bbb8433af3c292f199bad9cbbd84abae57985b10 Modified Files -- docs/en_US/getting_started.rst | 9 ++--- 1 file changed, 2 insertion

Import/export servers

2018-11-19 Thread Dave Page
A number of people have asked for the ability to import and export server definitions. It's also convenient to have such a feature in the container world, where new instances of pgAdmin containers may be created on the fly. Here's a draft patch to allow that, including docs and a basic test. Revi

Re: Import/export servers

2018-11-19 Thread navnath gadakh
small feedback, In the tests, instead of self.assertTrue(a == b) use self.assertEqual(a == b) which will give more info if test case fails. On Mon, Nov 19, 2018 at 8:09 PM Dave Page wrote: > A number of people have asked for the ability to import and export server > definitions. It's also conven

Re: Import/export servers

2018-11-19 Thread navnath gadakh
ignore previous, use self.assertEqual(a,b) instead of self.assertTrue(a == b) On Tue, Nov 20, 2018 at 10:46 AM navnath gadakh < navnath.gad...@enterprisedb.com> wrote: > small feedback, > In the tests, instead of self.assertTrue(a == b) use self.assertEqual(a == > b) which will give more info if

Re: Import/export servers

2018-11-19 Thread Akshay Joshi
Hi Dave On Mon, Nov 19, 2018 at 8:09 PM Dave Page wrote: > A number of people have asked for the ability to import and export server > definitions. It's also convenient to have such a feature in the container > world, where new instances of pgAdmin containers may be created on the fly. > > Here's