corasaurus-hex commented on code in PR #18559:
URL: https://github.com/apache/datafusion/pull/18559#discussion_r2507649747


##########
datafusion/datasource-arrow/src/source.rs:
##########
@@ -259,3 +406,373 @@ impl FileOpener for ArrowOpener {
         }))
     }
 }
+
+/// `FileSource` wrapper for both Arrow IPC file and stream formats
+#[derive(Clone)]
+pub struct ArrowSource {
+    pub inner: Arc<dyn FileSource>,
+}
+
+impl Default for ArrowSource {
+    fn default() -> Self {
+        Self::default_file_source()
+    }
+}

Review Comment:
   That's fine, I'm just eager to get this merged. I'm at five separate 
reviewers so far 😭, I'm just hoping this last pass is enough to clear the hurdle



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