yiguolei commented on code in PR #61173:
URL: https://github.com/apache/doris/pull/61173#discussion_r2921801344


##########
be/src/vec/common/pod_array_fwd.h:
##########
@@ -32,17 +32,15 @@ inline constexpr size_t integerRoundUp(size_t value, size_t 
dividend) {
     return ((value + dividend - 1) / dividend) * dividend;
 }
 
-template <typename T, size_t initial_bytes = 4096,
-          typename TAllocator = Allocator<false, false, false, 
DefaultMemoryAllocator, false>,
+template <typename T, size_t initial_bytes = 4096, typename TAllocator = 
Allocator<false>,
           size_t pad_right_ = 0, size_t pad_left_ = 0>
 class PODArray;
 
 /** For columns. Padding is enough to read and write xmm-register at the 
address of the last element.
   * TODO, Adapt internal data structures to 512-bit era 
https://github.com/ClickHouse/ClickHouse/pull/42564
   *       Padding in internal data structures increased to 64 bytes., support 
AVX-512 simd.
   */
-template <typename T, size_t initial_bytes = 4096,
-          typename TAllocator = Allocator<false, false, false, 
DefaultMemoryAllocator, false>>
+template <typename T, size_t initial_bytes = 4096, typename TAllocator = 
Allocator<false>>

Review Comment:
   这里不要直接这么写,要回滚到,之前那个pr的写法



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to