I am unable to make any edits in dbeaver.
INSTALL httpfs;LOAD httpfs;
INSTALL postgres;LOAD postgres;
INSTALL ducklake;LOAD ducklake;
INSTALL json;LOAD json;
CREATE OR REPLACE SECRET (
TYPE gcs,
KEY_ID 'GOOG',
SECRET 'hh6w'
);
ATTACH 'ducklake:postgres:host=localhost dbname=bkt_gen_lake01 user=user1' AS bkt_gen (
DATA_PATH 'gs://bucketname/some/duckdb/lake01'
);
-- note: in my sample data and table is already existing
CREATE TABLE IF NOT EXISTS "main"."Document" (
"Path" VARCHAR,
"Type" USMALLINT,
"Date" TIMESTAMP,
"Amount" DOUBLE,
"Currency" VARCHAR,
"Description" VARCHAR,
"DescriptionAbbreviation" VARCHAR,
"AccountCredit" USMALLINT,
"AccountDebit" USMALLINT,
"PartiesJson" JSON,
"Ids" VARCHAR[],
"Topic" USMALLINT[],
"Generation" USMALLINT,
"Created" TIMESTAMP,
"Modified" TIMESTAMP,
"Note" VARCHAR
);
Error synchronizing data with database
Can not bind statement parameter
Unknown target type 2003
I am unable to make any edits in dbeaver.
1. Setup
2. Try to edit
View DataType, change a value and click 'Save' at the bottom of the UIAm i doing something wrong or is Inline-Editing for ducklake not yet supported?