From a191933f811268e667e0e193620cf0f444fb461e Mon Sep 17 00:00:00 2001 From: Liu An Date: Mon, 10 Nov 2025 19:02:25 +0800 Subject: [PATCH] Fix(config): Add raptor_kwd field to infinity mapping (#11146) ### What problem does this PR solve? fix infinity "INSERT: Column raptor_kwd not found in table" error ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) --- conf/infinity_mapping.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/conf/infinity_mapping.json b/conf/infinity_mapping.json index e44766447..51888e9de 100644 --- a/conf/infinity_mapping.json +++ b/conf/infinity_mapping.json @@ -39,5 +39,6 @@ "n_hop_with_weight": {"type": "varchar", "default": ""}, "removed_kwd": {"type": "varchar", "default": "", "analyzer": "whitespace-#"}, "doc_type_kwd": {"type": "varchar", "default": "", "analyzer": "whitespace-#"}, - "toc_kwd": {"type": "varchar", "default": "", "analyzer": "whitespace-#"} + "toc_kwd": {"type": "varchar", "default": "", "analyzer": "whitespace-#"}, + "raptor_kwd": {"type": "varchar", "default": "", "analyzer": "whitespace-#"} }