brayanjuls commented on code in PR #412:
URL: https://github.com/apache/hudi-rs/pull/412#discussion_r2271948810
##########
python/src/internal.rs:
##########
@@ -239,6 +251,48 @@ impl From<&Instant> for HudiInstant {
}
}
+#[cfg(not(tarpaulin_include))]
+#[pyclass(name = "HudiDataSource")]
+#[derive(Clone)]
+pub struct HudiDataSource {
+ table: InternalHudiDataSource,
Review Comment:
I renamed HudiDataSource to HudiDataFusionDataSource, also make datafusion
dependency optional in the pyproject.toml so people can use `pip install
hudi[datafusion]`.
Additionally I extracted HudiDataFusionDataSource(datafusion_internal.rs) to
a different module so we can enable or disable it with rust feature flags.
--
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]