-
Notifications
You must be signed in to change notification settings - Fork 53
Support Postgres on AWS Aurora #134
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
Comments
No, does not work with latest build. Latest working version is DuckDB v.0.9.1.
|
It has been fixed in the latest dev build, not the latest release build. Which one are you using? |
I have compiled the source of main branch. |
Try using the new i.e.: ATTACH 'dbname=db user=postgres host=127.0.0.1 port=5432' AS pgdb (TYPE POSTGRES);
USE pgdb;
SHOW TABLES;
SELECT * FROM[table]; |
Thanks. That works. |
What happens?
postgres_scan function does not supports postgres in aws aurora. When executing statement:
SELECT * FROM postgres_scan('dbname=db user=postgres password=*** host=127.0.0.1', 'public', 'table_name');
it gives error:
Error: Invalid Error: Failed to execute query "SELECT pg_is_in_recovery(), pg_export_snapshot(), (select count(*) from pg_stat_wal_receiver)": ERROR: Function pg_stat_get_wal_receiver() is currently not supported in Aurora
To Reproduce
Create postgresql database in amazon RDS and execurte query:
SELECT * FROM postgres_scan('dbname=db user=postgres password=*** host=127.0.0.1', 'public', 'table_name');
OS:
Windows
PostgreSQL Version:
PostgreSQL 13.9
DuckDB Version:
v0.9.2
DuckDB Client:
CLI
Full Name:
Otar
Affiliation:
Personal
Have you tried this on the latest
main
branch?Have you tried the steps to reproduce? Do they include all relevant data and configuration? Does the issue you report still appear there?
The text was updated successfully, but these errors were encountered: