Skip to content
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

feat(subscription): support blocking cursor #18675

Merged
merged 11 commits into from
Oct 8, 2024
Merged
Prev Previous commit
Next Next commit
fix ci
xxhZs committed Sep 25, 2024
commit c47a2e8fce4a1a5bbd4f422b816be2b18460215f
2 changes: 2 additions & 0 deletions e2e_test/subscription/main.py
Original file line number Diff line number Diff line change
@@ -286,6 +286,8 @@ def test_cursor_with_table_alter():
execute_insert("insert into t1 values(6,6)",conn)
execute_insert("flush",conn)
row = execute_query("fetch next from cur with (timeout = '2s')",conn)
assert row == []
row = execute_query("fetch next from cur with (timeout = '2s')",conn)
check_rows_data([6,6],row[0],"Insert")
drop_table_subscription()