fix: prevent DuckDB MAP inference from breaking log analytics (#4746)

This commit is contained in:
Amir Raminfar
2026-05-26 07:46:03 -07:00
committed by GitHub
parent 5bef729c52
commit 9a99e9305f
+1 -1
View File
@@ -90,7 +90,7 @@ onMounted(async () => {
state.value = "initializing";
await conn.query(
`CREATE TABLE logs AS SELECT unnest(m) FROM read_json('logs.json', ignore_errors = true, format = 'newline_delimited')`,
`CREATE TABLE logs AS SELECT unnest(m) FROM read_json('logs.json', ignore_errors = true, format = 'newline_delimited', map_inference_threshold = -1)`,
);
state.value = "ready";