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


##########
be/src/exec/schema_scanner/schema_columns_scanner.cpp:
##########
@@ -609,14 +611,14 @@ Status 
SchemaColumnsScanner::_fill_block_impl(vectorized::Block* block) {
     // EXTRA
     {
         StringRef str = StringRef("", 0);
-        std::vector<void*> datas(columns_num, &str);
-        RETURN_IF_ERROR(fill_dest_column_for_range(block, 17, datas));
+        std::vector<void*> datas_(columns_num, &str);
+        RETURN_IF_ERROR(fill_dest_column_for_range(block, 17, datas_));
     }
     // PRIVILEGES
     {
         StringRef str = StringRef("", 0);
-        std::vector<void*> datas(columns_num, &str);
-        RETURN_IF_ERROR(fill_dest_column_for_range(block, 18, datas));
+        std::vector<void*> datas_(columns_num, &str);

Review Comment:
   datas_ 是用来表示一个类的成员的时候的写法,普通的变量不要以下划线结尾



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