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
Supabase CDC is currently unusable
INVALID_ARGUMENT: Postgres user must have select privilege on table 'public.test1' (SQLSTATE XX000)
IPV6 connection
CREATE SOURCE IF NOT EXISTS supabase_test WITH ( connector='postgres-cdc', hostname='db.blablabla.supabase.co', port='5432', username='postgres', password='*********', database.name='postgres', slot.name='test_slot', publication.name='test_pub' );
Fails with:
Internal error: The connection attempt failed. (SQLSTATE XX000)
because IPV6-only DNS resolve is needed.
IPV4 connection
CREATE SOURCE IF NOT EXISTS supabase_test WITH ( connector='postgres-cdc', hostname='aws-0-us-east-2.pooler.supabase.com', port='5432', username='postgres.blablaba', password='********', database.name='postgres', slot.name='test_slot', publication.name='test_pub' );
because it uses the username from the connector instead of current_user
current_user
Should work
it's a cloud version
cloud
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Supabase CDC is currently unusable
Error message/log
To Reproduce
IPV6 connection
Fails with:
because IPV6-only DNS resolve is needed.
IPV4 connection
Fails with:
because it uses the username from the connector instead of
current_user
Expected behavior
Should work
How did you deploy RisingWave?
it's a cloud version
The version of RisingWave
cloud
Additional context
No response
The text was updated successfully, but these errors were encountered: