Skip to content

Commit

Permalink
chore(catalog): avoid rw_catalog in pg_tables
Browse files Browse the repository at this point in the history
  • Loading branch information
KeXiangWang committed May 24, 2024
1 parent d9890ef commit 804c663
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 804c663

Please sign in to comment.