-
-
Notifications
You must be signed in to change notification settings - Fork 192
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
Streams not showing delete event #1032
Comments
@maxfornacon |
@dshukertjr |
Thanks for the confirmation. I can see that other users are having the same trouble. I will ask the realtime team to look into this one. |
@maxfornacon |
@maxfornacon No, it's not that one. Sorry, I thought I pasted the link to the relevant sections, but you need to run this SQL statement. |
This fixed it for me too. Thanks! But why did it only happen when I applied the filter? When the realtime subscription printed out the received change it looked like this:
So the old record was received and only the id of it. That indicates that it was set to full as it says int the docs:
|
My guess is it's related to this update: supabase/walrus#76 |
Describe the bug
Streams don't react to deleted records.
I use a stream like this:
It works when I add rows to the table, then the
snapshot.data!.length
increments, but when I delete entries, it doesn't decrement.I also listen to the channel like this at the same time:
Here it receives the delete event.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Stream gets notified about the delete event.
Version (please complete the following information):
Testing on macOS:
Happens for me on supabase_flutter: 2.6.0 (hosted) and the version from branch
fix/realtime
The text was updated successfully, but these errors were encountered: