yiguolei commented on a change in pull request #1339: Place 
_init_seek_columns() in right place
URL: https://github.com/apache/incubator-doris/pull/1339#discussion_r295632192
 
 

 ##########
 File path: be/src/olap/reader.cpp
 ##########
 @@ -590,15 +590,15 @@ OLAPStatus Reader::_init_params(const ReaderParams& 
read_params) {
         return res;
     }
 
-    res = _init_seek_columns();
+    res = _init_keys_param(read_params);
     if (res != OLAP_SUCCESS) {
-        OLAP_LOG_WARNING("fail to init seek columns. [res=%d]", res);
+        OLAP_LOG_WARNING("fail to init keys param. [res=%d]", res);
         return res;
     }
 
-    res = _init_keys_param(read_params);
+    res = _init_seek_columns();
     if (res != OLAP_SUCCESS) {
-        OLAP_LOG_WARNING("fail to init keys param. [res=%d]", res);
+        OLAP_LOG_WARNING("fail to init seek columns. [res=%d]", res);
         return res;
 
 Review comment:
   LOG(WARNING)

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

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

Reply via email to