We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Realtime RLS will be broadcasting database changes with errors so that clients can capture what went wrong when listening to database changes.
errors
Please see here for the current error states: https://github.com/supabase/walrus/tree/generic_claims#error-states.
Realtime RLS will broadcast errors as either null (no errors) or an array of strings (at least one error present).
null
Here are two example Realtime RLS JSON payloads with errors:
{ "columns": [{"name": "id", "type": "int8"}, {"name": "details", "type": "text"}], "commit_timestamp": "2021-12-28T23:59:38.984538+00:00", "schema": "public", "table": "todos", "type": "UPDATE", "old_record": {"details": "previous test", "id": 12, "user_id": 1}, "record": {"details": "test...", "id": 12, "user_id": 1}, "errors": ["Error 413: Payload Too Large"] }
{ "columns": [], "commit_timestamp": null, "schema": "public", "table": "todos", "type": "UPDATE", "old_record": {}, "record": {}, "errors": ["Error.."] }
Notice:
columns
commit_timestamp
old_record
record
The text was updated successfully, but these errors were encountered:
Woah it's been a while - I'm going to move this to the realtime-py repo so this can be taken into consideration for the realtime-py RFC
realtime-py
Sorry, something went wrong.
This issue is stale because it has been open for 365 days with no activity.
No branches or pull requests
Realtime RLS will be broadcasting database changes with
errors
so that clients can capture what went wrong when listening to database changes.Please see here for the current error states: https://github.com/supabase/walrus/tree/generic_claims#error-states.
Realtime RLS will broadcast
errors
as eithernull
(no errors) or an array of strings (at least one error present).Here are two example Realtime RLS JSON payloads with errors:
Notice:
columns
will always be an array but can be emptycommit_timestamp
will either be a string or nullold_record
/record
will always be an object but can be emptyThe text was updated successfully, but these errors were encountered: