From f8000349893cefd92e50ada2b8f60126349bbfbe Mon Sep 17 00:00:00 2001 From: Christiaan Herrewijn Date: Mon, 18 May 2026 13:10:59 +0200 Subject: [PATCH] errors containing "internal_tablefilter" are not necessarily internal errors the logic to detect internal errors now searches for the word "internal" in the error message. This leads to false positives, since some function names contain the word "internal" and print it also for regular errors. This whitelist is used to filter out these false positives --- scripts/fuzzer_helper.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/fuzzer_helper.py b/scripts/fuzzer_helper.py index 186e83e..ea5fc26 100644 --- a/scripts/fuzzer_helper.py +++ b/scripts/fuzzer_helper.py @@ -27,6 +27,7 @@ "internal use", "internal_compress", "internal_decompress", + "internal_tablefilter", ] fuzzer_desc = '''Issue found by ${FUZZER} on git commit hash [${SHORT_HASH}](https://github.com/duckdb/duckdb/commit/${FULL_HASH}) using seed ${SEED}.