crepererum commented on code in PR #623:
URL: 
https://github.com/apache/arrow-rs-object-store/pull/623#discussion_r2786886623


##########
src/azure/mod.rs:
##########
@@ -121,6 +122,23 @@ impl ObjectStore for MicrosoftAzure {
         self.client.list(prefix)
     }
 
+    fn list_with_offset(
+        &self,
+        prefix: Option<&Path>,
+        offset: &Path,
+    ) -> BoxStream<'static, Result<ObjectMeta>> {
+        if self.client.config().is_emulator {
+            // Azurite doesn't support the startFrom query parameter,
+            // fall back to client-side filtering

Review Comment:
   ```suggestion
               // fall back to client-side filtering
               //
               // See 
https://github.com/Azure/Azurite/issues/2619#issuecomment-3660701055
   ```
   
   Let's leave some breadcrumbs so that one day we can remove this exception.



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