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
Looks like this foreign table setting from Supabase doc is not correct:
create foreign table firebase_users ( uid text, email text, created_at timestamp, attrs jsonb ) server firebase_server options ( object 'auth/users' );
But the error message returns the right user data in the error message, in the format:
{ "kind": "identitytoolkit#DownloadAccountResponse", "users": [...] }
Steps to reproduce the behavior, please provide code snippets or a repository:
insert into vault.secrets (name, secret) values ( 'firebase', '{ ************************ }' ) returning key_id; create server firebase_server foreign data wrapper firebase_wrapper options ( sa_key_id '***************************', -- The Key ID from above. project_id 'xxxxxxxx' ); create foreign table firebase_users ( uid text, email text, created_at timestamp, attrs jsonb ) server firebase_server options ( object 'auth/users' );
Display user data in Rows or return them from a Select query on the foreign table
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug report
Describe the bug
Looks like this foreign table setting from Supabase doc is not correct:
But the error message returns the right user data in the error message, in the format:
To Reproduce
Steps to reproduce the behavior, please provide code snippets or a repository:
Expected behavior
Display user data in Rows or return them from a Select query on the foreign table
Screenshots
System information
The text was updated successfully, but these errors were encountered: