Open hlcianfagna opened 7 months ago
Hi @hlcianfagna. Thanks for your report.
Can I humbly ask you to evaluate the problem closer, maybe together with @surister, @seut, or @proddata, and maybe derive or transfer this issue into crate/crate, also tagging it with tool: DBeaver, when applicable?
I did a quick test, this still occurs with the latest version of DBeaver and the latest nightly of CrateDB.
Then create a
.csv
file and try to import it from DBeaver with the default "Data load settings" with "Skip bind values during insert" not selectedIn CrateDB this will fail with
in PostgreSQL it works (DBeaver also succeeds if the column is
INT
instead ofBOOLEAN
or if we select the option to skip binding)I can get the same stack trace in Java if I use a
setBigDecimal
against aPreparedStatement
instead of asetBoolean
, however this fails also against pgqsl while DBeaver works against pgsql.So perhaps this something about
pg_type
not having composite type entries for the tables or aboutpg_description
not having an entry for theboolean
data type?