Adrien Ferrara

Results 2 comments of Adrien Ferrara

> Are you sure that the database is not attached already? > > You could try `DETACH` or `SHOW databases;` to find out. Yes pretty much, also tried to close...

So after seeing this issue: https://github.com/duckdb/ducklake/issues/112 It seems that adding the METADATA_SCHEMA option solves the problem: `ATTACH 'ducklake:mysql:db=ducklake_catalog host=192.168.1.100 user=root port=3306 password=xxx' AS ducklake_catalog (DATA_PATH 'data_files/' , METADATA_SCHEMA 'ducklake_catalog');` I'm...