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


##########
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:
   I think it's better for it in the end, too, really. And from reading your PR 
I got the same impression that it wouldn't make it into 51.



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