From 9a99e9305f5e6e3d3119442de7bf16633be7bd6d Mon Sep 17 00:00:00 2001 From: Amir Raminfar Date: Tue, 26 May 2026 07:46:03 -0700 Subject: [PATCH] fix: prevent DuckDB MAP inference from breaking log analytics (#4746) --- assets/components/LogViewer/LogAnalytics.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/components/LogViewer/LogAnalytics.vue b/assets/components/LogViewer/LogAnalytics.vue index 981dd47f..3a21c4b0 100644 --- a/assets/components/LogViewer/LogAnalytics.vue +++ b/assets/components/LogViewer/LogAnalytics.vue @@ -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";