github-actions[bot] commented on code in PR #15181:
URL: https://github.com/apache/doris/pull/15181#discussion_r1052202064


##########
be/src/vec/columns/column_nullable.h:
##########
@@ -147,7 +147,7 @@ class ColumnNullable final : public COWHelper<IColumn, 
ColumnNullable> {
 
     void insert_many_defaults(size_t length) override {
         get_nested_column().insert_many_defaults(length);
-        _get_null_map_data().resize_fill(get_null_map_data().size() + length, 
1);
+        _get_null_map_data().resize_fill(_get_null_map_data().size() + length 
1);

Review Comment:
   warning: expected ')' [clang-diagnostic-error]
   ```cpp
           _get_null_map_data().resize_fill(_get_null_map_data().size() + 
length 1);
                                                                                
 ^
   ```
   **be/src/vec/columns/column_nullable.h:149:** to match this '('
   ```cpp
           _get_null_map_data().resize_fill(_get_null_map_data().size() + 
length 1);
                                           ^
   ```
   



-- 
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