8000 Python wrapper classes for all user interfaces by timsaucer · Pull Request #750 · apache/datafusion-python · GitHub
[go: up one dir, main page]

Skip to content

Python wrapper classes for all user interfaces #750

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

Merged
merged 55 commits into from
Jul 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
d00c00a
Expose missing functions to python
timsaucer Jul 9, 2024
27e4f30
Initial commit for creating wrapper classes and functions for all use…
timsaucer Jul 9, 2024
a3429ab
Remove extra level of python path that is no longer required
timsaucer Jul 9, 2024
7937963
Move import to only happen for type checking for hints
timsaucer Jul 9, 2024
1f4c829
Comment out classes from __all__ in the top level that are not curren…
timsaucer Jul 9, 2024
d7f5f68
Add license comments
timsaucer Jul 9, 2024
79bb196
Add missing import
timsaucer Jul 9, 2024
685a257
Functions now only has one level of depth
timsaucer Jul 9, 2024
45ee5ab
Applying google docstring formatting
timsaucer Jul 9, 2024
b8239e7
Addressing PR request to add google formatted docstrings
timsaucer Jul 10, 2024
4c8073e
Small docstring for ruff
timsaucer Jul 10, 2024
411c91c
Linting
timsaucer Jul 10, 2024
610adda
Add docstring format checking to pre-commit stage
timsaucer Jul 10, 2024
265aeb7
Set explicit return types on UDFs
timsaucer Jul 11, 2024
02564de
Add options of passing either a path or a string
timsaucer Jul 12, 2024
e0e55a8
Switch to google docstring style
timsaucer Jul 12, 2024
dcd5211
Update unit tests to include registering via path or string
timsaucer Jul 12, 2024
1063cff
Add py.typed file
timsaucer Jul 12, 2024
5ba2017
Resolve deprecation warnings in unit tests
timsaucer Jul 13, 2024
438afa0
Add path to unit test
timsaucer Jul 13, 2024
837e3b2
Expose an option in write_csv to include header and add unit test
timsaucer Jul 13, 2024
6e75eee
Update write_parquet unit test to include paths or strings
timsaucer Jul 13, 2024
2ebe2e5
Add unit test for writ 8000 e_json
timsaucer Jul 13, 2024
dad0d26
Add unit test for substrait serialization to a file
timsaucer Jul 13, 2024
ae569ff
Add unit tests for runtime config
timsaucer Jul 13, 2024
4f973af
Setting return type to typing_extensions.Self per PR recommendation
timsaucer Jul 13, 2024
f2ed822
Correcting __next__ to not return None since it will raise an excepti…
timsaucer Jul 13, 2024
c2ee65d
Add optiona parameter of decimal places to round and add unit test
timsaucer Jul 13, 2024
835e374
Improve docstrings
timsaucer Jul 13, 2024
08b83ac
Set default to None instead of empty dict
timsaucer Jul 13, 2024
2ccd5ad
User request to allow passing multiple arguments to filter()
timsaucer Jul 13, 2024
13be857
Enhance Expr comparison operators to accept any python value and atte…
timsaucer Jul 13, 2024
8f1bb65
Expose overlay and add unit test
timsaucer Jul 13, 2024
75e129a
Allow select() to take either str for column names or a full expr
timsaucer Jul 13, 2024
f2b15e0
Update comments on regexp and add unit tests
timsaucer Jul 13, 2024
b76d105
Remove TODO markings no longer applicable
timsaucer Jul 13, 2024
6e87d73
Update udf documentation
timsaucer Jul 14, 2024
39f18cb
Docstring formatting
timsaucer Jul 14, 2024
94650b5
Updating docstring formatting
timsaucer Jul 14, 2024
95a4688
Updating docstring formatting
timsaucer Jul 14, 2024
39d9c00
Updating docstring formatting
timsaucer Jul 14, 2024
671d508
Updating docstring formatting
timsaucer Jul 15, 2024
49efdd0
Updating docstring formatting
timsaucer Jul 15, 2024
3c7a811
Cleaning up docstring line lengths
timsaucer Jul 15, 2024
fbf3f46
Add pre-commit check of docstring line length
timsaucer Jul 15, 2024
d6c6598
Do not emit doc entry for __init__ of some classes
timsaucer Jul 16, 2024
cccf305
Correct errors on code blocks generating in sphinx
timsaucer Jul 16, 2024
6579ac5
Resolve conflict with
timsaucer Jul 16, 2024
62197bc
Add license info to py.typed
timsaucer Jul 16, 2024
2821183
Clean up some docstring too long errors in CI
timsaucer Jul 16, 2024
c1df7db
Correct ruff complain in unit tests
timsaucer Jul 16, 2024
461e7b5
Temporarily install google test to get clippy to pass
timsaucer Jul 16, 2024
4af541e
Adding gmock to build step due to upstream error
timsaucer Jul 16, 2024
5588f28
Add type_extensions to conda meta file
timsaucer Jul 16, 2024
39f01fb
Small comment suggestions from PR
timsaucer Jul 17, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ jobs:
name: python-wheel-license
path: .

# To remove once https://github.com/MaterializeInc/rust-protobuf-native/issues/20 is resolved
- name: Install gtest
uses: MarkusJx/googletest-installer@v1.1

- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ jobs:
version: '3.20.2'
repo-token: ${{ secrets.GITHUB_TOKEN }}

# To remove once https://github.com/MaterializeInc/rust-protobuf-native/issues/20 is resolved
- name: Install gtest
uses: MarkusJx/googletest-installer@v1.1

- name: Setup Python
uses: actions/setup-python@v5
with:
Expand Down
3 changes: 2 additions & 1 deletion benchmarks/db-benchmark/join-datafusion.py