mymeiyi commented on code in PR #24788:
URL: https://github.com/apache/doris/pull/24788#discussion_r1390707282


##########
be/src/olap/tablet.h:
##########
@@ -423,7 +423,7 @@ class Tablet final : public BaseTablet {
                           const std::vector<RowsetSharedPtr>& 
specified_rowsets,
                           RowLocation* row_location, uint32_t version,
                           std::vector<std::unique_ptr<SegmentCacheHandle>>& 
segment_caches,
-                          RowsetSharedPtr* rowset = nullptr);
+                          RowsetSharedPtr* rowset = nullptr, bool with_rowid = 
true);

Review Comment:
   It checks if contains the row id by:
   ```
   if (with_rowid && 
!_tablet_meta->tablet_schema()->cluster_key_idxes().empty())
   ```
   
   Now, the `with_rowid` is false only for point query. So the default value is 
true.



-- 
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: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to