mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Disable function statistics on Greenplum. Fixes #3176
This commit is contained in:
committed by
Dave Page
parent
06ff05762e
commit
d1ab47c10c
@@ -92,7 +92,9 @@ define('pgadmin.node.function', [
|
||||
collection_type: 'coll-function',
|
||||
hasSQL: true,
|
||||
hasDepends: true,
|
||||
hasStatistics: true,
|
||||
hasStatistics: (treeInformation) => {
|
||||
return treeInformation.server.server_type !== 'gpdb';
|
||||
},
|
||||
hasScriptTypes: ['create', 'select'],
|
||||
parent_type: ['schema', 'catalog'],
|
||||
Init: function() {
|
||||
|
||||
Reference in New Issue
Block a user