pgAdmin 4 commit: Fixes #2304,#2145 - Resolve the issue for restoring

Поиск
Список
Период
Сортировка
От Ashesh Vashi
Тема pgAdmin 4 commit: Fixes #2304,#2145 - Resolve the issue for restoring
Дата
Msg-id E1ctrGP-0004iv-Gs@gothos.postgresql.org
обсуждение исходный текст
Список 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 по дате отправления:

Предыдущее
От: Ashesh Vashi
Дата:
Сообщение: Re: [patch] Move to Alembic migration system
Следующее
От: Khushboo Vashi
Дата:
Сообщение: [pgAdmin4][Patch]: Fixed RM 2291 - Error highlighting broken