Fixed some issues in Backup and PSQL tool
parent
25e05de27d
commit
a3c3d91515
|
@ -42,6 +42,7 @@ Bug fixes
|
||||||
| `Issue #6317 <https://github.com/pgadmin-org/pgadmin4/issues/6317>`_ - Fix an issue where queries longer than 1 minute get stuck - Container 7.1
|
| `Issue #6317 <https://github.com/pgadmin-org/pgadmin4/issues/6317>`_ - Fix an issue where queries longer than 1 minute get stuck - Container 7.1
|
||||||
| `Issue #6356 <https://github.com/pgadmin-org/pgadmin4/issues/6356>`_ - Fix an issue where queries get stuck with auto-completion enabled.
|
| `Issue #6356 <https://github.com/pgadmin-org/pgadmin4/issues/6356>`_ - Fix an issue where queries get stuck with auto-completion enabled.
|
||||||
| `Issue #6364 <https://github.com/pgadmin-org/pgadmin4/issues/6364>`_ - Fixed Query Tool/ PSQL tool tab title not getting updated on database rename.
|
| `Issue #6364 <https://github.com/pgadmin-org/pgadmin4/issues/6364>`_ - Fixed Query Tool/ PSQL tool tab title not getting updated on database rename.
|
||||||
|
| `Issue #6489 <https://github.com/pgadmin-org/pgadmin4/issues/6489>`_ - Fix an issue where the edit server fails in desktop mode if the server password is not stored.
|
||||||
| `Issue #6499 <https://github.com/pgadmin-org/pgadmin4/issues/6499>`_ - Ensure that Backup, Restore, and Maintenance should work properly when pgpass file is used.
|
| `Issue #6499 <https://github.com/pgadmin-org/pgadmin4/issues/6499>`_ - Ensure that Backup, Restore, and Maintenance should work properly when pgpass file is used.
|
||||||
| `Issue #6501 <https://github.com/pgadmin-org/pgadmin4/issues/6501>`_ - Fix the query tool auto-complete issue on the server reconnection.
|
| `Issue #6501 <https://github.com/pgadmin-org/pgadmin4/issues/6501>`_ - Fix the query tool auto-complete issue on the server reconnection.
|
||||||
| `Issue #6502 <https://github.com/pgadmin-org/pgadmin4/issues/6502>`_ - Fix the query tool restore connection issue.
|
| `Issue #6502 <https://github.com/pgadmin-org/pgadmin4/issues/6502>`_ - Fix the query tool restore connection issue.
|
||||||
|
|
|
@ -638,7 +638,8 @@ export default class BackupSchema extends BaseUISchema {
|
||||||
state.enable_row_security = false;
|
state.enable_row_security = false;
|
||||||
return true;
|
return true;
|
||||||
},
|
},
|
||||||
visible: isVisibleForServerBackup(obj.backupType)
|
visible: isVisibleForServerBackup(obj.backupType),
|
||||||
|
helpMessage: gettext('This option is enabled only when Use INSERT Commands is enabled.')
|
||||||
}, {
|
}, {
|
||||||
id: 'with_oids',
|
id: 'with_oids',
|
||||||
label: gettext('With OID(s)'),
|
label: gettext('With OID(s)'),
|
||||||
|
@ -646,7 +647,7 @@ export default class BackupSchema extends BaseUISchema {
|
||||||
deps: ['use_column_inserts', 'use_insert_commands'],
|
deps: ['use_column_inserts', 'use_insert_commands'],
|
||||||
group: gettext('Table Options'),
|
group: gettext('Table Options'),
|
||||||
disabled: function(state) {
|
disabled: function(state) {
|
||||||
let serverInfo = _.isUndefined(obj.fieldOptions.nodeInfo) ? undefined : obj.fieldOptions.nodeInfo.server;
|
let serverInfo = _.isUndefined(obj.treeNodeInfo) ? undefined : obj.treeNodeInfo.server;
|
||||||
|
|
||||||
if (!_.isUndefined(serverInfo) && serverInfo.version >= 120000)
|
if (!_.isUndefined(serverInfo) && serverInfo.version >= 120000)
|
||||||
return true;
|
return true;
|
||||||
|
|
|
@ -235,7 +235,7 @@ export function initialize(gettext, url_for, _, pgAdmin, csrfToken, Browser) {
|
||||||
let closeUrl = url_for('psql.close', {
|
let closeUrl = url_for('psql.close', {
|
||||||
trans_id: transId,
|
trans_id: transId,
|
||||||
});
|
});
|
||||||
return [openUrl, closeUrl, pData.database._label];
|
return [openUrl, closeUrl, _.escape(pData.database._label)];
|
||||||
},
|
},
|
||||||
psql_terminal: function() {
|
psql_terminal: function() {
|
||||||
// theme colors
|
// theme colors
|
||||||
|
|
Loading…
Reference in New Issue