Skip to content

Commit

Permalink
chore(catalog): avoid rw_catalog in pg_tables (#16915)
Browse files Browse the repository at this point in the history
  • Loading branch information
KeXiangWang authored and KeXiangWang committed May 31, 2024
1 parent 342def8 commit 47445a1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ use risingwave_frontend_macro::system_catalog;
schema_id,
owner
FROM rw_catalog.rw_system_tables) AS t
JOIN rw_catalog.rw_schemas s ON t.schema_id = s.id"
JOIN rw_catalog.rw_schemas s ON t.schema_id = s.id
AND s.name <> 'rw_catalog'"
)]
#[derive(Fields)]
struct PgTable {
Expand Down

0 comments on commit 47445a1

Please sign in to comment.