You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
create server ds foreign data wrapper duckdb_fdw options (database '/home/postgres/duckdb');
select duckdb_execute('ds','create table t1(a integer ,b integer ,c varchar(10));');
ERROR: failed to open SQLite DB. rc=1 path=/home/postgres/duckdb
select duckdb_execute('ds','create or replace view myv select now();');
ERROR: failed to open SQLite DB. rc=1 path=/home/postgres/duckdb
the fdw just worked with precreated database with duckdb cli,I want to know if it can work without duckdb cli,just use duckdb with fdw and duckdb_execute to create table and using it? thanks
The text was updated successfully, but these errors were encountered:
pg15
duckdb 0.10.1
create server ds foreign data wrapper duckdb_fdw options (database '/home/postgres/duckdb');
select duckdb_execute('ds','create table t1(a integer ,b integer ,c varchar(10));');
ERROR: failed to open SQLite DB. rc=1 path=/home/postgres/duckdb
select duckdb_execute('ds','create or replace view myv select now();');
ERROR: failed to open SQLite DB. rc=1 path=/home/postgres/duckdb
the fdw just worked with precreated database with duckdb cli,I want to know if it can work without duckdb cli,just use duckdb with fdw and duckdb_execute to create table and using it? thanks
The text was updated successfully, but these errors were encountered: