From a4b34327715916fa52f360a52f14acedfd09dfd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Sun, 24 Mar 2024 10:07:15 +0100 Subject: [PATCH] DO NOT MERGE: Poison re2 --- src/duckdb/third_party/re2/re2/re2.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/duckdb/third_party/re2/re2/re2.cc b/src/duckdb/third_party/re2/re2/re2.cc index 17e9df02e..29982bf8e 100644 --- a/src/duckdb/third_party/re2/re2/re2.cc +++ b/src/duckdb/third_party/re2/re2/re2.cc @@ -197,6 +197,8 @@ int RE2::Options::ParseFlags() const { } void RE2::Init(const StringPiece& pattern, const Options& options) { + abort(); + static std::once_flag empty_once; std::call_once(empty_once, []() { (void) new (empty_storage) EmptyStorage;