Skip to content

Commit 32d0106

Browse files
committed
Document workaround
1 parent f23c2e6 commit 32d0106

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,17 @@ Older versions require platform-specific imports (e.g., `github.com/duckdb/duckd
4141
| v1.2.1 | v0.1.13 | v0.1.8 | v0.1.8 | v0.1.8 |
4242
| v1.2.0 | v0.1.10 | v0.1.5 | v0.1.5 | v0.1.5 |
4343

44+
## Known Issues
45+
46+
### Malformed default extension directory on Windows (DuckDB v1.5.0)
47+
48+
DuckDB v1.5.0 has a [regression](https://github.com/duckdb/duckdb/pull/21260) where the default extension directory is malformed on Windows. This causes extension directory creation to fail. To work around this, set `extension_directory` explicitly in your DuckDB configuration:
49+
50+
```go
51+
config := duckdb.CreateConfig()
52+
duckdb.SetConfig(config, "extension_directory", `C:\path\to\ext\dir`)
53+
```
54+
4455
## Local Development
4556

4657
To develop locally, copy the workspace template file:

0 commit comments

Comments
 (0)