8000 fix(cursor): fix cursor schema error by xxhZs · Pull Request #21776 · risingwavelabs/risingwave · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix(cursor): fix cursor schema error #21776

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
May 19, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions e2e_test/ddl/subscription.slt
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,27 @@ create subscription if not exists ddl_subscription_table from ddl_t with(retenti
statement ok
create subscription if not exists ddl_subscription_mv from ddl_mv with(retention = '1D');

statement ok
create schema test_schema;

statement ok
create table test_schema.t1(v1 int, v2 int);

statement ok
create subscription test_schema.test_subscription from test_schema.t1 with(retention = '1d');

statement ok
declare test_cursor subscription cursor for test_schema.test_subscription full;

statement ok
drop subscription test_schema.test_subscription;

statement ok
drop table test_schema.t1;

statement ok
drop schema test_schema;

statement ok
drop subscription ddl_subscription_table;

Expand Down
Loading
0