public inbox for [email protected]
help / color / mirror / Atom feedRe: [pgAdmin 4 - Bug #1292] ERROR: template database "!@#$%^&*()_+{}|:"<>?=-\\][';/.," does not exist message throws if template database contain special charterers
6+ messages / 5 participants
[nested] [flat]
* Re: [pgAdmin 4 - Bug #1292] ERROR: template database "!@#$%^&*()_+{}|:"<>?=-\\][';/.," does not exist message throws if template database contain special charterers
@ 2016-06-20 13:56 Sanket Mehta <[email protected]>
0 siblings, 1 reply; 6+ messages in thread
From: Sanket Mehta @ 2016-06-20 13:56 UTC (permalink / raw)
To: pgadmin-hackers
Hi,
PFA the revised patch to resolve this issue which consists the change in
control formatter.
Regards,
Sanket Mehta
Sr Software engineer
Enterprisedb
On Mon, Jun 13, 2016 at 3:12 PM, <[email protected]> wrote:
> Issue #1292 has been updated by Dave Page.
>
> - *Target version* deleted (*1.0 Beta 1*)
>
> ------------------------------
> Bug #1292: ERROR: template database "!@#$%^&*()_+{}|:"<>?=-\\][';/.," does
> not exist message throws if template database contain special charterers
> <https://redmine.postgresql.org/issues/1292#change-2631;
>
> - Author: Fahar Abbas
> - Status: In Progress
> - Priority: Normal
> - Assignee: Sanket Mehta
> - Category:
> - Target version:
>
> Commit ID:
> -----------
> commit 954163b4957c1dce89c0632d009b845cbe90faf4
>
> Browser version:
> ----------------
> Firefox 45.0.2
>
> Python version:
> ----------------
> 3.5.1+
>
> Platforms:
> All
>
> ERROR: template database "!@#$%^&*()_+{}|:"<>?=-\\][';/.," does not exist
> message throws if user try to create database with template database that
> name contain special charterers.
>
> Please note that this issue is not reproducible in other template
> databases that name is simple one.
>
> Please note that this is not reproduce in pgAdmin3.
>
> Steps:
>
> 1. Install pgAdmin4 on Ubuntu 16.04
> 2. Install PG-9.6-beta 1 installer
> 3. Expand database node
> 4. give it's name !#$%^&*()_+{}|:"<>?=-\][';/.,
> 5. Database created successfully
> 6. Again create new database and give it's name abcd
> 7. Click on definition tab
> 8. select template database !#$%^&*()_+{}|:"<>?=-\][';/.,
> 9. Click on Save button
> Files Screen Shot 2016-06-02 at 10.25.34 am.png
> <https://redmine.postgresql.org/attachments/download/1197/Screen%20Shot%202016-06-02%20at%2010.25.34%...;
> (1020 KB)
> Screen Shot 2016-06-02 at 10.26.01 am.png
> <https://redmine.postgresql.org/attachments/download/1198/Screen%20Shot%202016-06-02%20at%2010.26.01%...;
> (1.03 MB)
> ------------------------------
>
> You have received this notification because you have either subscribed to
> it, or are involved in it.
> To change your notification preferences, please click here:
> https://redmine.postgresql.org/my/account
>
--
Sent via pgadmin-hackers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers
Attachments:
[text/x-patch] RM_1292V2.patch (563B, 3-RM_1292V2.patch)
download | inline diff:
diff --git a/web/pgadmin/static/js/backform.pgadmin.js b/web/pgadmin/static/js/backform.pgadmin.js
index c33289c..4466c1c 100644
--- a/web/pgadmin/static/js/backform.pgadmin.js
+++ b/web/pgadmin/static/js/backform.pgadmin.js
@@ -1787,7 +1787,7 @@
var Select2Formatter = function() {};
_.extend(Select2Formatter.prototype, {
fromRaw: function(rawData, model) {
- return JSON.stringify(_.escape(rawData));
+ return JSON.parse(JSON.stringify(_.escape(rawData)));
},
toRaw: function(formattedData, model) {
return formattedData;
^ permalink raw reply [nested|flat] 6+ messages in thread
* Re: Re: [pgAdmin 4 - Bug #1292] ERROR: template database "!@#$%^&*()_+{}|:"<>?=-\\][';/.," does not exist message throws if template database contain special charterers
@ 2016-06-20 15:04 Dave Page <[email protected]>
parent: Sanket Mehta <[email protected]>
0 siblings, 1 reply; 6+ messages in thread
From: Dave Page @ 2016-06-20 15:04 UTC (permalink / raw)
To: Sanket Mehta <[email protected]>; +Cc: pgadmin-hackers
Thanks, patch applied.
On Mon, Jun 20, 2016 at 2:56 PM, Sanket Mehta
<[email protected]> wrote:
> Hi,
>
> PFA the revised patch to resolve this issue which consists the change in
> control formatter.
>
>
> Regards,
> Sanket Mehta
> Sr Software engineer
> Enterprisedb
>
> On Mon, Jun 13, 2016 at 3:12 PM, <[email protected]> wrote:
>>
>> Issue #1292 has been updated by Dave Page.
>>
>> Target version deleted (1.0 Beta 1)
>>
>> ________________________________
>>
>> Bug #1292: ERROR: template database "!@#$%^&*()_+{}|:"<>?=-\\][';/.," does
>> not exist message throws if template database contain special charterers
>>
>> Author: Fahar Abbas
>> Status: In Progress
>> Priority: Normal
>> Assignee: Sanket Mehta
>> Category:
>> Target version:
>>
>> Commit ID:
>> -----------
>> commit 954163b4957c1dce89c0632d009b845cbe90faf4
>>
>> Browser version:
>> ----------------
>> Firefox 45.0.2
>>
>> Python version:
>> ----------------
>> 3.5.1+
>>
>> Platforms:
>> All
>>
>> ERROR: template database "!@#$%^&*()_+{}|:"<>?=-\\][';/.," does not exist
>> message throws if user try to create database with template database that
>> name contain special charterers.
>>
>> Please note that this issue is not reproducible in other template
>> databases that name is simple one.
>>
>> Please note that this is not reproduce in pgAdmin3.
>>
>> Steps:
>>
>> 1. Install pgAdmin4 on Ubuntu 16.04
>> 2. Install PG-9.6-beta 1 installer
>> 3. Expand database node
>> 4. give it's name !#$%^&*()_+{}|:"<>?=-\][';/.,
>> 5. Database created successfully
>> 6. Again create new database and give it's name abcd
>> 7. Click on definition tab
>> 8. select template database !#$%^&*()_+{}|:"<>?=-\][';/.,
>> 9. Click on Save button
>>
>> Files Screen Shot 2016-06-02 at 10.25.34 am.png (1020 KB)
>> Screen Shot 2016-06-02 at 10.26.01 am.png (1.03 MB)
>> ________________________________
>>
>> You have received this notification because you have either subscribed to
>> it, or are involved in it.
>> To change your notification preferences, please click here:
>> https://redmine.postgresql.org/my/account
>
>
>
>
> --
> Sent via pgadmin-hackers mailing list ([email protected])
> 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
--
Sent via pgadmin-hackers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers
^ permalink raw reply [nested|flat] 6+ messages in thread
* Re: Re: [pgAdmin 4 - Bug #1292] ERROR: template database "!@#$%^&*()_+{}|:"<>?=-\\][';/.," does not exist message throws if template database contain special charterers
@ 2016-06-24 11:24 Murtuza Zabuawala <[email protected]>
parent: Dave Page <[email protected]>
0 siblings, 2 replies; 6+ messages in thread
From: Murtuza Zabuawala @ 2016-06-24 11:24 UTC (permalink / raw)
To: Dave Page <[email protected]>; +Cc: Sanket Mehta <[email protected]>; pgadmin-hackers
Hi,
PFA patch to fix the issue RM#1292.
Earlier patch was not handling spaces properly.
e.g- If user creates any objects which has spaces in its name then it fails
to parse it next time user select it.
--
Regards,
Murtuza Zabuawala
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company
On Mon, Jun 20, 2016 at 8:34 PM, Dave Page <[email protected]> wrote:
> Thanks, patch applied.
>
> On Mon, Jun 20, 2016 at 2:56 PM, Sanket Mehta
> <[email protected]> wrote:
> > Hi,
> >
> > PFA the revised patch to resolve this issue which consists the change in
> > control formatter.
> >
> >
> > Regards,
> > Sanket Mehta
> > Sr Software engineer
> > Enterprisedb
> >
> > On Mon, Jun 13, 2016 at 3:12 PM, <[email protected]> wrote:
> >>
> >> Issue #1292 has been updated by Dave Page.
> >>
> >> Target version deleted (1.0 Beta 1)
> >>
> >> ________________________________
> >>
> >> Bug #1292: ERROR: template database "!@#$%^&*()_+{}|:"<>?=-\\][';/.,"
> does
> >> not exist message throws if template database contain special charterers
> >>
> >> Author: Fahar Abbas
> >> Status: In Progress
> >> Priority: Normal
> >> Assignee: Sanket Mehta
> >> Category:
> >> Target version:
> >>
> >> Commit ID:
> >> -----------
> >> commit 954163b4957c1dce89c0632d009b845cbe90faf4
> >>
> >> Browser version:
> >> ----------------
> >> Firefox 45.0.2
> >>
> >> Python version:
> >> ----------------
> >> 3.5.1+
> >>
> >> Platforms:
> >> All
> >>
> >> ERROR: template database "!@#$%^&*()_+{}|:"<>?=-\\][';/.," does not
> exist
> >> message throws if user try to create database with template database
> that
> >> name contain special charterers.
> >>
> >> Please note that this issue is not reproducible in other template
> >> databases that name is simple one.
> >>
> >> Please note that this is not reproduce in pgAdmin3.
> >>
> >> Steps:
> >>
> >> 1. Install pgAdmin4 on Ubuntu 16.04
> >> 2. Install PG-9.6-beta 1 installer
> >> 3. Expand database node
> >> 4. give it's name !#$%^&*()_+{}|:"<>?=-\][';/.,
> >> 5. Database created successfully
> >> 6. Again create new database and give it's name abcd
> >> 7. Click on definition tab
> >> 8. select template database !#$%^&*()_+{}|:"<>?=-\][';/.,
> >> 9. Click on Save button
> >>
> >> Files Screen Shot 2016-06-02 at 10.25.34 am.png (1020 KB)
> >> Screen Shot 2016-06-02 at 10.26.01 am.png (1.03 MB)
> >> ________________________________
> >>
> >> You have received this notification because you have either subscribed
> to
> >> it, or are involved in it.
> >> To change your notification preferences, please click here:
> >> https://redmine.postgresql.org/my/account
> >
> >
> >
> >
> > --
> > Sent via pgadmin-hackers mailing list ([email protected])
> > 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
>
>
> --
> Sent via pgadmin-hackers mailing list ([email protected])
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgadmin-hackers
>
--
Sent via pgadmin-hackers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers
Attachments:
[application/octet-stream] RM_1292.patch (624B, 3-RM_1292.patch)
download | inline diff:
diff --git a/web/pgadmin/static/js/backform.pgadmin.js b/web/pgadmin/static/js/backform.pgadmin.js
index 7431765..1370698 100644
--- a/web/pgadmin/static/js/backform.pgadmin.js
+++ b/web/pgadmin/static/js/backform.pgadmin.js
@@ -1787,10 +1787,10 @@
var Select2Formatter = function() {};
_.extend(Select2Formatter.prototype, {
fromRaw: function(rawData, model) {
- return JSON.parse(JSON.stringify(_.escape(rawData)));
+ return encodeURIComponent(rawData);
},
toRaw: function(formattedData, model) {
- return formattedData;
+ return decodeURIComponent(formattedData);
}
});
^ permalink raw reply [nested|flat] 6+ messages in thread
* Re: Re: [pgAdmin 4 - Bug #1292] ERROR: template database "!@#$%^&*()_+{}|:"<>?=-\\][';/.," does not exist message throws if template database contain special charterers
@ 2016-06-24 13:10 Dave Page <[email protected]>
parent: Murtuza Zabuawala <[email protected]>
1 sibling, 0 replies; 6+ messages in thread
From: Dave Page @ 2016-06-24 13:10 UTC (permalink / raw)
To: Murtuza Zabuawala <[email protected]>; +Cc: Sanket Mehta <[email protected]>; pgadmin-hackers
Thanks, applied.
On Fri, Jun 24, 2016 at 12:24 PM, Murtuza Zabuawala
<[email protected]> wrote:
> Hi,
>
> PFA patch to fix the issue RM#1292.
>
> Earlier patch was not handling spaces properly.
> e.g- If user creates any objects which has spaces in its name then it fails
> to parse it next time user select it.
>
>
>
> --
> Regards,
> Murtuza Zabuawala
> EnterpriseDB: http://www.enterprisedb.com
> The Enterprise PostgreSQL Company
>
> On Mon, Jun 20, 2016 at 8:34 PM, Dave Page <[email protected]> wrote:
>>
>> Thanks, patch applied.
>>
>> On Mon, Jun 20, 2016 at 2:56 PM, Sanket Mehta
>> <[email protected]> wrote:
>> > Hi,
>> >
>> > PFA the revised patch to resolve this issue which consists the change in
>> > control formatter.
>> >
>> >
>> > Regards,
>> > Sanket Mehta
>> > Sr Software engineer
>> > Enterprisedb
>> >
>> > On Mon, Jun 13, 2016 at 3:12 PM, <[email protected]> wrote:
>> >>
>> >> Issue #1292 has been updated by Dave Page.
>> >>
>> >> Target version deleted (1.0 Beta 1)
>> >>
>> >> ________________________________
>> >>
>> >> Bug #1292: ERROR: template database "!@#$%^&*()_+{}|:"<>?=-\\][';/.,"
>> >> does
>> >> not exist message throws if template database contain special
>> >> charterers
>> >>
>> >> Author: Fahar Abbas
>> >> Status: In Progress
>> >> Priority: Normal
>> >> Assignee: Sanket Mehta
>> >> Category:
>> >> Target version:
>> >>
>> >> Commit ID:
>> >> -----------
>> >> commit 954163b4957c1dce89c0632d009b845cbe90faf4
>> >>
>> >> Browser version:
>> >> ----------------
>> >> Firefox 45.0.2
>> >>
>> >> Python version:
>> >> ----------------
>> >> 3.5.1+
>> >>
>> >> Platforms:
>> >> All
>> >>
>> >> ERROR: template database "!@#$%^&*()_+{}|:"<>?=-\\][';/.," does not
>> >> exist
>> >> message throws if user try to create database with template database
>> >> that
>> >> name contain special charterers.
>> >>
>> >> Please note that this issue is not reproducible in other template
>> >> databases that name is simple one.
>> >>
>> >> Please note that this is not reproduce in pgAdmin3.
>> >>
>> >> Steps:
>> >>
>> >> 1. Install pgAdmin4 on Ubuntu 16.04
>> >> 2. Install PG-9.6-beta 1 installer
>> >> 3. Expand database node
>> >> 4. give it's name !#$%^&*()_+{}|:"<>?=-\][';/.,
>> >> 5. Database created successfully
>> >> 6. Again create new database and give it's name abcd
>> >> 7. Click on definition tab
>> >> 8. select template database !#$%^&*()_+{}|:"<>?=-\][';/.,
>> >> 9. Click on Save button
>> >>
>> >> Files Screen Shot 2016-06-02 at 10.25.34 am.png (1020 KB)
>> >> Screen Shot 2016-06-02 at 10.26.01 am.png (1.03 MB)
>> >> ________________________________
>> >>
>> >> You have received this notification because you have either subscribed
>> >> to
>> >> it, or are involved in it.
>> >> To change your notification preferences, please click here:
>> >> https://redmine.postgresql.org/my/account
>> >
>> >
>> >
>> >
>> > --
>> > Sent via pgadmin-hackers mailing list ([email protected])
>> > 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
>>
>>
>> --
>> Sent via pgadmin-hackers mailing list ([email protected])
>> 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
--
Sent via pgadmin-hackers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers
^ permalink raw reply [nested|flat] 6+ messages in thread
* Re: Re: [pgAdmin 4 - Bug #1292] ERROR: template database "!@#$%^&*()_+{}|:"<>?=-\\][';/.," does not exist message throws if template database contain special charterers
@ 2016-07-05 07:12 Harshal Dhumal <[email protected]>
parent: Murtuza Zabuawala <[email protected]>
1 sibling, 1 reply; 6+ messages in thread
From: Harshal Dhumal @ 2016-07-05 07:12 UTC (permalink / raw)
To: Murtuza Zabuawala <[email protected]>; +Cc: Dave Page <[email protected]>; Sanket Mehta <[email protected]>; pgadmin-hackers
Hi,
This patch has caused another new issue (or regression).
Issue: Select2 control does not work in multi-select mode.
Node affected due to this are Primary key, unique key, and all other node
where we have used select2 control in multi-select mode.
Commit id: 4267545e08cb28b8c4574bb7a5da0322ef7728d2
--
*Harshal Dhumal*
*Software Engineer*
EnterpriseDB India: http://www.enterprisedb.com
The Enterprise PostgreSQL Company
On Fri, Jun 24, 2016 at 4:54 PM, Murtuza Zabuawala <
[email protected]> wrote:
> Hi,
>
> PFA patch to fix the issue RM#1292.
>
> Earlier patch was not handling spaces properly.
> e.g- If user creates any objects which has spaces in its name then it
> fails to parse it next time user select it.
>
>
>
> --
> Regards,
> Murtuza Zabuawala
> EnterpriseDB: http://www.enterprisedb.com
> The Enterprise PostgreSQL Company
>
> On Mon, Jun 20, 2016 at 8:34 PM, Dave Page <[email protected]> wrote:
>
>> Thanks, patch applied.
>>
>> On Mon, Jun 20, 2016 at 2:56 PM, Sanket Mehta
>> <[email protected]> wrote:
>> > Hi,
>> >
>> > PFA the revised patch to resolve this issue which consists the change in
>> > control formatter.
>> >
>> >
>> > Regards,
>> > Sanket Mehta
>> > Sr Software engineer
>> > Enterprisedb
>> >
>> > On Mon, Jun 13, 2016 at 3:12 PM, <[email protected]> wrote:
>> >>
>> >> Issue #1292 has been updated by Dave Page.
>> >>
>> >> Target version deleted (1.0 Beta 1)
>> >>
>> >> ________________________________
>> >>
>> >> Bug #1292: ERROR: template database "!@#$%^&*()_+{}|:"<>?=-\\][';/.,"
>> does
>> >> not exist message throws if template database contain special
>> charterers
>> >>
>> >> Author: Fahar Abbas
>> >> Status: In Progress
>> >> Priority: Normal
>> >> Assignee: Sanket Mehta
>> >> Category:
>> >> Target version:
>> >>
>> >> Commit ID:
>> >> -----------
>> >> commit 954163b4957c1dce89c0632d009b845cbe90faf4
>> >>
>> >> Browser version:
>> >> ----------------
>> >> Firefox 45.0.2
>> >>
>> >> Python version:
>> >> ----------------
>> >> 3.5.1+
>> >>
>> >> Platforms:
>> >> All
>> >>
>> >> ERROR: template database "!@#$%^&*()_+{}|:"<>?=-\\][';/.," does not
>> exist
>> >> message throws if user try to create database with template database
>> that
>> >> name contain special charterers.
>> >>
>> >> Please note that this issue is not reproducible in other template
>> >> databases that name is simple one.
>> >>
>> >> Please note that this is not reproduce in pgAdmin3.
>> >>
>> >> Steps:
>> >>
>> >> 1. Install pgAdmin4 on Ubuntu 16.04
>> >> 2. Install PG-9.6-beta 1 installer
>> >> 3. Expand database node
>> >> 4. give it's name !#$%^&*()_+{}|:"<>?=-\][';/.,
>> >> 5. Database created successfully
>> >> 6. Again create new database and give it's name abcd
>> >> 7. Click on definition tab
>> >> 8. select template database !#$%^&*()_+{}|:"<>?=-\][';/.,
>> >> 9. Click on Save button
>> >>
>> >> Files Screen Shot 2016-06-02 at 10.25.34 am.png (1020 KB)
>> >> Screen Shot 2016-06-02 at 10.26.01 am.png (1.03 MB)
>> >> ________________________________
>> >>
>> >> You have received this notification because you have either subscribed
>> to
>> >> it, or are involved in it.
>> >> To change your notification preferences, please click here:
>> >> https://redmine.postgresql.org/my/account
>> >
>> >
>> >
>> >
>> > --
>> > Sent via pgadmin-hackers mailing list ([email protected])
>> > 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
>>
>>
>> --
>> Sent via pgadmin-hackers mailing list ([email protected])
>> To make changes to your subscription:
>> http://www.postgresql.org/mailpref/pgadmin-hackers
>>
>
>
>
> --
> Sent via pgadmin-hackers mailing list ([email protected])
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgadmin-hackers
>
>
^ permalink raw reply [nested|flat] 6+ messages in thread
* Re: Re: [pgAdmin 4 - Bug #1292] ERROR: template database "!@#$%^&*()_+{}|:"<>?=-\\][';/.," does not exist message throws if template database contain special charterers
@ 2016-07-05 07:13 Ashesh Vashi <[email protected]>
parent: Harshal Dhumal <[email protected]>
0 siblings, 0 replies; 6+ messages in thread
From: Ashesh Vashi @ 2016-07-05 07:13 UTC (permalink / raw)
To: Harshal Dhumal <[email protected]>; +Cc: Dave Page <[email protected]>; pgadmin-hackers; Sanket Mehta <[email protected]>; Murtuza Zabuawala <[email protected]>
Can you please look into it?
On Jul 5, 2016 12:42, "Harshal Dhumal" <[email protected]>
wrote:
> Hi,
>
>
> This patch has caused another new issue (or regression).
>
> Issue: Select2 control does not work in multi-select mode.
>
> Node affected due to this are Primary key, unique key, and all other node
> where we have used select2 control in multi-select mode.
>
> Commit id: 4267545e08cb28b8c4574bb7a5da0322ef7728d2
>
>
>
>
>
>
>
> --
> *Harshal Dhumal*
> *Software Engineer*
>
> EnterpriseDB India: http://www.enterprisedb.com
> The Enterprise PostgreSQL Company
>
> On Fri, Jun 24, 2016 at 4:54 PM, Murtuza Zabuawala <
> [email protected]> wrote:
>
>> Hi,
>>
>> PFA patch to fix the issue RM#1292.
>>
>> Earlier patch was not handling spaces properly.
>> e.g- If user creates any objects which has spaces in its name then it
>> fails to parse it next time user select it.
>>
>>
>>
>> --
>> Regards,
>> Murtuza Zabuawala
>> EnterpriseDB: http://www.enterprisedb.com
>> The Enterprise PostgreSQL Company
>>
>> On Mon, Jun 20, 2016 at 8:34 PM, Dave Page <[email protected]> wrote:
>>
>>> Thanks, patch applied.
>>>
>>> On Mon, Jun 20, 2016 at 2:56 PM, Sanket Mehta
>>> <[email protected]> wrote:
>>> > Hi,
>>> >
>>> > PFA the revised patch to resolve this issue which consists the change
>>> in
>>> > control formatter.
>>> >
>>> >
>>> > Regards,
>>> > Sanket Mehta
>>> > Sr Software engineer
>>> > Enterprisedb
>>> >
>>> > On Mon, Jun 13, 2016 at 3:12 PM, <[email protected]> wrote:
>>> >>
>>> >> Issue #1292 has been updated by Dave Page.
>>> >>
>>> >> Target version deleted (1.0 Beta 1)
>>> >>
>>> >> ________________________________
>>> >>
>>> >> Bug #1292: ERROR: template database "!@#$%^&*()_+{}|:"<>?=-\\][';/.,"
>>> does
>>> >> not exist message throws if template database contain special
>>> charterers
>>> >>
>>> >> Author: Fahar Abbas
>>> >> Status: In Progress
>>> >> Priority: Normal
>>> >> Assignee: Sanket Mehta
>>> >> Category:
>>> >> Target version:
>>> >>
>>> >> Commit ID:
>>> >> -----------
>>> >> commit 954163b4957c1dce89c0632d009b845cbe90faf4
>>> >>
>>> >> Browser version:
>>> >> ----------------
>>> >> Firefox 45.0.2
>>> >>
>>> >> Python version:
>>> >> ----------------
>>> >> 3.5.1+
>>> >>
>>> >> Platforms:
>>> >> All
>>> >>
>>> >> ERROR: template database "!@#$%^&*()_+{}|:"<>?=-\\][';/.," does not
>>> exist
>>> >> message throws if user try to create database with template database
>>> that
>>> >> name contain special charterers.
>>> >>
>>> >> Please note that this issue is not reproducible in other template
>>> >> databases that name is simple one.
>>> >>
>>> >> Please note that this is not reproduce in pgAdmin3.
>>> >>
>>> >> Steps:
>>> >>
>>> >> 1. Install pgAdmin4 on Ubuntu 16.04
>>> >> 2. Install PG-9.6-beta 1 installer
>>> >> 3. Expand database node
>>> >> 4. give it's name !#$%^&*()_+{}|:"<>?=-\][';/.,
>>> >> 5. Database created successfully
>>> >> 6. Again create new database and give it's name abcd
>>> >> 7. Click on definition tab
>>> >> 8. select template database !#$%^&*()_+{}|:"<>?=-\][';/.,
>>> >> 9. Click on Save button
>>> >>
>>> >> Files Screen Shot 2016-06-02 at 10.25.34 am.png (1020 KB)
>>> >> Screen Shot 2016-06-02 at 10.26.01 am.png (1.03 MB)
>>> >> ________________________________
>>> >>
>>> >> You have received this notification because you have either
>>> subscribed to
>>> >> it, or are involved in it.
>>> >> To change your notification preferences, please click here:
>>> >> https://redmine.postgresql.org/my/account
>>> >
>>> >
>>> >
>>> >
>>> > --
>>> > Sent via pgadmin-hackers mailing list ([email protected])
>>> > 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
>>>
>>>
>>> --
>>> Sent via pgadmin-hackers mailing list ([email protected])
>>> To make changes to your subscription:
>>> http://www.postgresql.org/mailpref/pgadmin-hackers
>>>
>>
>>
>>
>> --
>> Sent via pgadmin-hackers mailing list ([email protected])
>> To make changes to your subscription:
>> http://www.postgresql.org/mailpref/pgadmin-hackers
>>
>>
>
^ permalink raw reply [nested|flat] 6+ messages in thread
end of thread, other threads:[~2016-07-05 07:13 UTC | newest]
Thread overview: 6+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2016-06-20 13:56 Re: [pgAdmin 4 - Bug #1292] ERROR: template database "!@#$%^&*()_+{}|:"<>?=-\\][';/.," does not exist message throws if template database contain special charterers Sanket Mehta <[email protected]>
2016-06-20 15:04 ` Dave Page <[email protected]>
2016-06-24 11:24 ` Murtuza Zabuawala <[email protected]>
2016-06-24 13:10 ` Dave Page <[email protected]>
2016-07-05 07:12 ` Harshal Dhumal <[email protected]>
2016-07-05 07:13 ` Ashesh Vashi <[email protected]>
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox