diff --git a/Framework/Core/include/Framework/TableBuilder.h b/Framework/Core/include/Framework/TableBuilder.h index 0df83bdfb0f53..43f4f6909108d 100644 --- a/Framework/Core/include/Framework/TableBuilder.h +++ b/Framework/Core/include/Framework/TableBuilder.h @@ -28,12 +28,12 @@ #include #include -#include -#include +#include #include +#include #include #include -#include +#include namespace arrow { @@ -568,10 +568,8 @@ concept BulkInsertable = (std::integral> && !std::same_as struct InsertionTrait { - static consteval DirectInsertion policy() - requires(!BulkInsertable); - static consteval CachedInsertion policy() - requires(BulkInsertable); + static consteval DirectInsertion policy() requires(!BulkInsertable); + static consteval CachedInsertion policy() requires(BulkInsertable); using Policy = decltype(policy()); };