mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Ensure that maintenance job should be worked properly for indexes under a materialized view. Fixes #4223.
This commit is contained in:
parent
073d90c4a6
commit
9d08776824
@ -23,6 +23,7 @@ Bug fixes
|
|||||||
*********
|
*********
|
||||||
|
|
||||||
| `Issue #3694 <https://redmine.postgresql.org/issues/3694>`_ - Gracefully informed the user that the database is already connected when they click on "Connect Database...".
|
| `Issue #3694 <https://redmine.postgresql.org/issues/3694>`_ - Gracefully informed the user that the database is already connected when they click on "Connect Database...".
|
||||||
|
| `Issue #4223 <https://redmine.postgresql.org/issues/4223>`_ - Ensure that maintenance job should be worked properly for indexes under a materialized view.
|
||||||
| `Issue #4279 <https://redmine.postgresql.org/issues/4279>`_ - Ensure that file browse "home" button should point to $HOME rather than /.
|
| `Issue #4279 <https://redmine.postgresql.org/issues/4279>`_ - Ensure that file browse "home" button should point to $HOME rather than /.
|
||||||
| `Issue #4840 <https://redmine.postgresql.org/issues/4840>`_ - Ensure that 'With OID' option should be disabled while taking backup of database server version 12 and above.
|
| `Issue #4840 <https://redmine.postgresql.org/issues/4840>`_ - Ensure that 'With OID' option should be disabled while taking backup of database server version 12 and above.
|
||||||
| `Issue #5001 <https://redmine.postgresql.org/issues/5001>`_ - Fixed invalid literal issue when removing the connection limit for the existing role.
|
| `Issue #5001 <https://redmine.postgresql.org/issues/5001>`_ - Fixed invalid literal issue when removing the connection limit for the existing role.
|
||||||
|
@ -1109,4 +1109,7 @@ select:-webkit-autofill:focus {
|
|||||||
/* Left side has a check icon, right side corrected */
|
/* Left side has a check icon, right side corrected */
|
||||||
.btn-radiomodern {
|
.btn-radiomodern {
|
||||||
padding-right: 1.75*$input-btn-padding-x !important;
|
padding-right: 1.75*$input-btn-padding-x !important;
|
||||||
|
&.disabled {
|
||||||
|
pointer-events: none !important;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -347,6 +347,8 @@ define([
|
|||||||
table = treeInfo.partition._label;
|
table = treeInfo.partition._label;
|
||||||
} else if (treeInfo.table != undefined) {
|
} else if (treeInfo.table != undefined) {
|
||||||
table = treeInfo.table._label;
|
table = treeInfo.table._label;
|
||||||
|
} else if (treeInfo.mview != undefined) {
|
||||||
|
table = treeInfo.mview._label;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (treeInfo.primary_key != undefined) {
|
if (treeInfo.primary_key != undefined) {
|
||||||
|
Loading…
Reference in New Issue
Block a user