Xuanwo commented on code in PR #2107:
URL: 
https://github.com/apache/incubator-opendal/pull/2107#discussion_r1176010740


##########
core/src/services/gcs/pager.rs:
##########
@@ -97,6 +114,16 @@ impl oio::Page for GcsPager {
                 continue;
             }
 
+            // exclude the inclusive start_after itself
+            if self

Review Comment:
   We can use something like the following: 
   
   ```rust
   let path = build_rel_path(&self.core.root, &object.name);
   if self.start_after == Some(path) {
       continue
   }
   
   ...
   
   let de = oio::Entry::new(&path, meta);
   ```
   



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

Reply via email to