Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: implement datafusion TableProviderFactory #151

Closed
wants to merge 7 commits into from
Closed

Conversation

kazdy
Copy link
Contributor

@kazdy kazdy commented Sep 30, 2024

Description

resolves: #150

This allows datafusion users to register an external hudi table and query it like so:

CREATE EXTERNAL TABLE trips STORED AS HUDITABLE LOCATION tbl/path;
SELECT * FROM trips;

How are the changes test-covered

  • N/A
  • Automated tests (unit and/or integration tests)
  • Manual tests
    • Details are described below

@kazdy kazdy marked this pull request as draft September 30, 2024 20:56
@kazdy kazdy marked this pull request as ready for review September 30, 2024 21:18
Copy link

codecov bot commented Oct 5, 2024

Codecov Report

Attention: Patch coverage is 0% with 6 lines in your changes missing coverage. Please review.

Project coverage is 87.10%. Comparing base (5e1981f) to head (fefcd24).
Report is 1 commits behind head on main.

Files with missing lines Patch % Lines
crates/datafusion/src/lib.rs 0.00% 6 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main     #151      +/-   ##
==========================================
- Coverage   87.82%   87.10%   -0.72%     
==========================================
  Files          14       14              
  Lines         731      737       +6     
==========================================
  Hits          642      642              
- Misses         89       95       +6     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@xushiyan xushiyan added this to the release-0.3.0 milestone Oct 11, 2024
@xushiyan xushiyan added feature rust Related to Rust codebase labels Oct 11, 2024
@kazdy kazdy closed this Oct 11, 2024
@kazdy
Copy link
Contributor Author

kazdy commented Oct 11, 2024

closed in favor of #162

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature rust Related to Rust codebase
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Create HudiTableFactory implementing DataFusions TableProviderFactory
2 participants