pgAdmin 4 commit: Fixes #2304,#2145 - Resolve the issue for restoring - Mailing list pgadmin-hackers

From Ashesh Vashi
Subject pgAdmin 4 commit: Fixes #2304,#2145 - Resolve the issue for restoring
Date
Msg-id E1ctrGP-0004iv-Gs@gothos.postgresql.org
Whole thread Raw
List pgadmin-hackers
Fixes #2304, #2145 - Resolve the issue for restoring the table from the backup.

Earlier - implementation was generating the backup code like as below:
XXX/pg_restore.exe --host "x.x.x.x" --port "xxxx" --username "osboxes" --no-password --dbname "test" --data-only
--verbose--table "tt.test2" "XXX-FILE.bak" 

It should have been:
XXX/pg_restore.exe --host "x.x.x.x" --port "xxxx" --username "osboxes" --no-password --dbname "test" --data-only
--verbose--schema "tt" --table "test2" "XXX-FILE.bak" 

Branch
------
master

Details
-------
http://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=8005b0529227ca8fbbb1252475c5a4ec9fcc5330
Author: Maxim Zakharov <dp.maxime@gmail.com>

Modified Files
--------------
web/pgadmin/tools/restore/__init__.py                   | 10 +++++-----
.../tools/restore/templates/restore/js/restore.js       | 17 +++++++++++------
2 files changed, 16 insertions(+), 11 deletions(-)


pgadmin-hackers by date:

Previous
From: Ashesh Vashi
Date:
Subject: Re: [patch] Move to Alembic migration system
Next
From: Khushboo Vashi
Date:
Subject: [pgAdmin4][Patch]: Fixed RM 2291 - Error highlighting broken