mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Bypass recovery checks with older servers. This is required for Greenplum which is based on PG 8.3 at present.
This commit is contained in:
@@ -346,9 +346,7 @@ class PGChildNodeView(NodeView):
|
||||
"""
|
||||
|
||||
# Set the sql_path
|
||||
sql_path = ''
|
||||
if conn.manager.version >= 90100:
|
||||
sql_path = 'depends/sql/9.1_plus'
|
||||
sql_path = 'depends/sql/#{0}#'.format(conn.manager.version)
|
||||
|
||||
if where is None:
|
||||
where_clause = "WHERE dep.objid={0}::oid".format(object_id)
|
||||
|
||||
Reference in New Issue
Block a user