-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#793: Added support for Pandas 2 pyarrow dtype columns for emitting d…
…ata from Python UDFs (#357) * Update pandas to 2.0.2 in compatible template flavors * #796: Fixed silent data corruption when emitting dataframes with float16 dtype columns from Python UDFs * Replace asscalar with item in test dataframe.py, because asscalar was removed * Added handleEmitPyFloat to also support float pyarrow dtype columns with NAN and object-dtype columns with float * Refactored and split Pandas Tests * Added tests for more dtypes to Pandas Tests
- Loading branch information
Showing
11 changed files
with
957 additions
and
113 deletions.
There are no files selected for viewing
275 changes: 206 additions & 69 deletions
275
exaudfclient/base/python/python3/python_ext_dataframe.cc
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
generic_language_tests=python3 | ||
test_folders=python3/all | ||
test_folders=python3/all pandas/all |
5 changes: 3 additions & 2 deletions
5
...s/python-3.8-minimal-EXASOL-6.2.0/flavor_base/language_deps/packages/python3_pip_packages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
pandas|1.3.4 | ||
numpy|1.21.3 | ||
pandas|2.0.2 | ||
numpy|1.24.3 | ||
pyarrow|12.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
generic_language_tests=python3 | ||
test_folders=python3/all | ||
test_folders=python3/all pandas/all pandas/pandas2 |
4 changes: 2 additions & 2 deletions
4
...rs/template-Exasol-all-python-3.8-conda/flavor_base/language_deps/packages/conda_packages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
flavors/template-Exasol-all-python-3.8-conda/flavor_base/testconfig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
generic_language_tests=python3 | ||
test_folders=python3/all | ||
test_folders=python3/all pandas/all pandas/pandas2 |
4 changes: 2 additions & 2 deletions
4
...mplate-Exasol-all-python-3.8-cuda-conda/flavor_base/language_deps/packages/conda_packages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
flavors/template-Exasol-all-python-3.8-cuda-conda/flavor_base/testconfig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
generic_language_tests=python3 | ||
test_folders=python3/all | ||
test_folders=python3/all pandas/all pandas/pandas2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.