Fixed an issue where users are unable to see data of the partition table using the View/Edit data option. Fixes #6375.

This commit is contained in:
Akshay Joshi
2021-04-07 16:25:21 +05:30
parent 7f59463e3b
commit 8aea86613e
2 changed files with 2 additions and 1 deletions

View File

@@ -43,7 +43,7 @@ export function showDataGrid(
return;
}
let applicable_nodes = ['table', 'view', 'mview', 'foreign_table'];
let applicable_nodes = ['table', 'partition', 'view', 'mview', 'foreign_table', 'catalog_object'];
if (applicable_nodes.indexOf(node.getData()._type) === -1) {
return;
}