Skip to content

Commit

Permalink
Fix: Invalid column references (#466)
Browse files Browse the repository at this point in the history
  • Loading branch information
misolt authored Jul 15, 2024
1 parent 86f7ab7 commit 4db4e07
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ INNER JOIN cdb_hist_snapshot C
ON A.snap_id = C.snap_id
AND A.dbid = C.dbid
AND A.instance_number = C.instance_number
AND B.end_interval_time > sysdate - 30
AND C.end_interval_time > sysdate - 30
LEFT JOIN audit_actions D
ON B.command_type = D.action
GROUP BY
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ INNER JOIN stats$sql_summary B
ON A.dbid = B.dbid
AND A.snap_id = B.snap_id
AND A.instance_number = B.instance_number
AND A.end_interval_time > sysdate - 30
AND A.snap_time > sysdate - 30
GROUP BY
A.dbid,
A.instance_number,
Expand Down

0 comments on commit 4db4e07

Please sign in to comment.