mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-09-04 14:14:56 -06:00
bug fix
Export to excel Cluster table wait Add sql resul color
This commit is contained in:
parent
b0afa4ead2
commit
39b8fbc0ab
11 changed files with 123 additions and 37 deletions
|
|
@ -459,7 +459,7 @@ void pgObject::ShowDependencies(frmMain *form, ctlListView *Dependencies, const
|
|||
return;
|
||||
|
||||
// Bail out if this is a pgAgent object, as they use the OID for IDs
|
||||
if (GetMetaType() == PGM_JOB || GetMetaType() == PGM_SCHEDULE || GetMetaType() == PGM_STEP)
|
||||
if (GetMetaType() == PGM_JOB || GetMetaType() == PGM_SCHEDULE || GetMetaType() == PGM_STEP || GetMetaType() == PGM_PROJOB)
|
||||
return;
|
||||
|
||||
wxString where;
|
||||
|
|
@ -635,7 +635,7 @@ void pgObject::ShowDependents(frmMain *form, ctlListView *referencedBy, const wx
|
|||
return;
|
||||
|
||||
// Bail out if this is a pgAgent object, as they use the OID for IDs
|
||||
if (GetMetaType() == PGM_JOB || GetMetaType() == PGM_SCHEDULE || GetMetaType() == PGM_STEP)
|
||||
if (GetMetaType() == PGM_JOB || GetMetaType() == PGM_SCHEDULE || GetMetaType() == PGM_STEP || GetMetaType() == PGM_PROJOB)
|
||||
return;
|
||||
|
||||
wxString where;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue