We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a38b48e commit c9e1d9fCopy full SHA for c9e1d9f
api/src/DuckDBInstance.ts
@@ -14,7 +14,7 @@ export class DuckDBInstance {
14
const config = duckdb.create_config();
15
try {
16
for (const optionName in options) {
17
- const optionValue = options[optionName];
+ const optionValue = String(options[optionName]);
18
duckdb.set_config(config, optionName, optionValue);
19
}
20
return new DuckDBInstance(await duckdb.open(path, config));
0 commit comments