Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
fix ci
  • Loading branch information
xxhZs committed Feb 29, 2024
1 parent 542727e commit b0bc196
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
8 changes: 7 additions & 1 deletion e2e_test/ddl/subscription.slt
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,10 @@ statement ok
drop subscription if exists ddl_subscription_table;

statement ok
drop subscription if exists ddl_subscription_mv;
drop subscription if exists ddl_subscription_mv;

statement ok
drop materialized view ddl_mv;

statement ok
drop table ddl_t;
6 changes: 6 additions & 0 deletions src/meta/src/manager/catalog/user.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ impl UserManager {
.chain(database.sources.values().map(|source| source.owner))
.chain(database.sinks.values().map(|sink| sink.owner))
.chain(database.indexes.values().map(|index| index.owner))
.chain(
database
.subscriptions
.values()
.map(|subscriptions| subscriptions.owner),
)
.chain(
database
.tables
Expand Down

0 comments on commit b0bc196

Please sign in to comment.