From 558a9677bf8caf5ccb837acb8627635a4cdefd57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=A6=E9=85=A5?= Date: Mon, 8 Sep 2025 10:15:04 +0800 Subject: [PATCH 1/2] fix compile error on MacOS M1 in encoding_operator.cpp:286. --- src/expression/encoding_operator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/expression/encoding_operator.cpp b/src/expression/encoding_operator.cpp index 67b5534c..d4abf470 100644 --- a/src/expression/encoding_operator.cpp +++ b/src/expression/encoding_operator.cpp @@ -283,7 +283,7 @@ enc_ffor_opr::enc_ffor_opr(const PhysicalExpr& expr, ColumnDescriptorT& column_descriptor, InterpreterState& state) { - VisitorFunctor functor {this, &expr}; + VisitorFunctor functor {this, &expr}; if (!expr.operators.empty()) { visit(functor, expr.operators.back()); From 18a4ed8898a3fc206d5350a2e2736c162472687b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=A6=E9=85=A5?= Date: Mon, 8 Sep 2025 19:04:35 +0800 Subject: [PATCH 2/2] increase base_seed by running `make bump` --- test/src/quick_fuzz_tests/fuzz_config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/src/quick_fuzz_tests/fuzz_config.json b/test/src/quick_fuzz_tests/fuzz_config.json index 1f037baa..2ddec430 100644 --- a/test/src/quick_fuzz_tests/fuzz_config.json +++ b/test/src/quick_fuzz_tests/fuzz_config.json @@ -1,6 +1,6 @@ { "num_cases": 10, - "base_seed": 7, + "base_seed": 8, "delimiter": "|", "min_cols": 1, "max_cols": 2,