Remove the option "With no data (concurrently)" from Refresh MATERIALIZED VIEW context menu. #8309

This commit is contained in:
Yogesh Mahajan
2025-01-07 12:22:07 +05:30
committed by GitHub
parent 8c461ffb86
commit b9c7e7e9af

View File

@@ -127,12 +127,6 @@ define('pgadmin.node.mview', [
data: {concurrent: true, with_data: true}, priority: 3,
applies: ['object', 'context'], callback: 'refresh_mview',
label: gettext('With data (concurrently)'),
},{
name: 'refresh_mview_concurrent_nodata', node: 'mview', module: this,
category: 'refresh_mview', enable: 'is_version_supported',
data: {concurrent: true, with_data: false}, priority: 4,
applies: ['object', 'context'], callback: 'refresh_mview',
label: gettext('With no data (concurrently)'),
}]);
},
getSchema: function(treeNodeInfo, itemNodeData) {