I am trying to combine stv_tbl_perm
,pg_class
and stl_query
to get queries ran against tables with 0 rows using EXISTS
.
Current Query
SELECT z.*
FROM stl_query WHERE EXISTS (
SELECT b.relname FROM (SELECT db_id, id, name, MAX(ROWS) rows_all_dist, SUM(ROWS) "rows"
FROM stv_tbl_perm
GROUP BY db_id, id, name) a
INNER JOIN pg_class b ON b.oid = a.id
WHERE CASE WHEN b.reldiststyle = 8
THEN a.rows_all_dist
ELSE a.rows
END = 0
AND b.relname LIKE '%' || z.querytxt || '%')
Error
XX000: This type of correlated sub query pattern is not supported due to internal error
Sub Query
Ran alone this brings back all tables which contain 0 rows
SELECT b.relname FROM (SELECT db_id, id, name, MAX(ROWS) rows_all_dist, SUM(ROWS) "rows"
FROM stv_tbl_perm
GROUP BY db_id, id, name) a
INNER JOIN pg_class b ON b.oid = a.id
WHERE CASE WHEN b.reldiststyle = 8
THEN a.rows_all_dist
ELSE a.rows
END = 0
What I am trying to do is combine this with stl_query
to see if any of the tables with 0 rows are being queried.
Because there is no way to combine the 3 tables to use
EXISTS
to look for tables with 0 rows I used the below (Which is not optimised nor elegant) to get the results I needed.NOTE: I used 14 "levels" of
SPLIT_PART
as that was the most amount of tables used in a single query for my results, this can be increased/decreased depending on your use case)CODE