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
I have imported data in a DuckDB database with python and a table contains a BLOB field
When I try to vizualize Blob (Ctrl-Alt-F2 window), Dbeaver crashes without any message
DBeaver Version
Community Edition 24.3.0
Operating System
Windows 10
Database and driver
Database DuckDB
Drivers : duckdb_jdbc-1.1.3.jar
Steps to reproduce
Create table with a Blob field
Import data in this table (I have used python or duckdb)
Open table with DBeaver and select blob field and show window value (Ctrl-Alt-F2)
Navigate and click another blob field
Additional context
I tried to reproduce directly with a simple script
CREATETABLEZZBLOB (
ID int64 NOT NULL,
FILENAME varchar(100),
CONTENT blob,
CONSTRAINT ZZBLOB_PK PRIMARY KEY (ID)
);
insert into ZZBLOB(ID, FILENAME) values (1, 'DBEAVER_editor_encoding.png');
-- DBEAVER_editor_encoding.png, a print screen, file size : 29,7 Ko (30 487 octets)-- no problem in DBeaver to read content
with cte as (select content from read_blob('DBEAVER_editor_encoding.png'))
update ZZBLOB set content=(select content from cte) where id =1;
insert into ZZBLOB(ID, FILENAME) values (2, 'RTF1.5SPEC');
-- RTF-Spec-1.5.pdf, file size : 381 Ko (390 583 octets)
with cte as (select content from read_blob('RTF-Spec-1.5.pdf'))
update ZZBLOB set content=(select content from cte) where id =2;
-- crash when trying to visualize content in DBeaver
The text was updated successfully, but these errors were encountered:
Description
I have imported data in a DuckDB database with python and a table contains a BLOB field
When I try to vizualize Blob (Ctrl-Alt-F2 window), Dbeaver crashes without any message
DBeaver Version
Community Edition 24.3.0
Operating System
Windows 10
Database and driver
Steps to reproduce
Additional context
I tried to reproduce directly with a simple script
The text was updated successfully, but these errors were encountered: