DBeaver: NumberFormatException
when importing data into table with boolean column
#112
Labels
bug
Something isn't working
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?The text was updated successfully, but these errors were encountered: