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
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
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
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
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
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