From 37dae4315ee3c12198a73d522b29569ff3279f7c Mon Sep 17 00:00:00 2001 From: Zehua Zou Date: Thu, 18 Dec 2025 00:29:39 +0800 Subject: [PATCH 1/3] add readability-isolate-declaration in .clang-tidy --- .clang-tidy | 1 + src/iceberg/test/mock_catalog.h | 1 + 2 files changed, 2 insertions(+) diff --git a/.clang-tidy b/.clang-tidy index 8977deae9..e7e8abd33 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -22,6 +22,7 @@ Checks: | google-*, modernize-*, readability-identifier-naming, + readability-isolate-declaration, -modernize-use-nodiscard, -modernize-use-trailing-return-type, diff --git a/src/iceberg/test/mock_catalog.h b/src/iceberg/test/mock_catalog.h index 46f01c8db..14f42390b 100644 --- a/src/iceberg/test/mock_catalog.h +++ b/src/iceberg/test/mock_catalog.h @@ -23,6 +23,7 @@ #include #include "iceberg/catalog.h" +#include "iceberg/table.h" namespace iceberg { From 2d7e75687fc7bed51b26fce51dedec38bac98422 Mon Sep 17 00:00:00 2001 From: Zehua Zou Date: Thu, 18 Dec 2025 01:04:47 +0800 Subject: [PATCH 2/3] empty commit to retrigger ci From c64175a26ca9256e6612793666380eeb9d41331d Mon Sep 17 00:00:00 2001 From: Zehua Zou <41586196+HuaHuaY@users.noreply.github.com> Date: Thu, 18 Dec 2025 15:11:51 +0800 Subject: [PATCH 3/3] remove adding header file --- src/iceberg/test/mock_catalog.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/iceberg/test/mock_catalog.h b/src/iceberg/test/mock_catalog.h index 14f42390b..46f01c8db 100644 --- a/src/iceberg/test/mock_catalog.h +++ b/src/iceberg/test/mock_catalog.h @@ -23,7 +23,6 @@ #include #include "iceberg/catalog.h" -#include "iceberg/table.h" namespace iceberg {