-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
ARROW-323: [Python] Opt-in to pyarrow.parquet extension rather than attempting and failing silently #194
Closed
Conversation
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
Change-Id: Ie713bccbc89fc671ffd7f32bf2fb0f89b1c6d646
Change-Id: I32fe58a984d32044d9313cb72fc0930522741d48
Change-Id: Id0af78dc13d88aaeb4db33f8dfc9b8f932bddb2b
xhochy
reviewed
Nov 2, 2016
@@ -57,9 +58,20 @@ python setup.py build_ext --build-type=release --inplace | |||
To pass through other build options to CMake, set the environment variable | |||
`$PYARROW_CMAKE_OPTIONS`. | |||
|
|||
#### Build the pyarrow Parquet file extension | |||
|
|||
To build the integration with [parquet-cpp][1], pass `--with-parquet` to |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will only work on the build_ext
command
|
Change-Id: I3cd25f900a50ac7bc4d8ff56b15823dbf22b97c9
+1 |
wesm
pushed a commit
to wesm/arrow
that referenced
this pull request
Sep 2, 2018
Author: Uwe L. Korn <uwelk@xhochy.com> Closes apache#194 from xhochy/PARQUET-769 and squashes the following commits: aad390f [Uwe L. Korn] Pass buffer sizes also as in parameter 9847171 [Uwe L. Korn] make format 855250d [Uwe L. Korn] make format 40e93de [Uwe L. Korn] Add FindBrotli 47b9d03 [Uwe L. Korn] PARQUET-769: Add support for Brotli compression
wesm
pushed a commit
to wesm/arrow
that referenced
this pull request
Sep 4, 2018
Author: Uwe L. Korn <uwelk@xhochy.com> Closes apache#194 from xhochy/PARQUET-769 and squashes the following commits: aad390f [Uwe L. Korn] Pass buffer sizes also as in parameter 9847171 [Uwe L. Korn] make format 855250d [Uwe L. Korn] make format 40e93de [Uwe L. Korn] Add FindBrotli 47b9d03 [Uwe L. Korn] PARQUET-769: Add support for Brotli compression Change-Id: I2f6b1c03f0b7e7d83f64d0e34859eb09f2702838
wesm
pushed a commit
to wesm/arrow
that referenced
this pull request
Sep 6, 2018
Author: Uwe L. Korn <uwelk@xhochy.com> Closes apache#194 from xhochy/PARQUET-769 and squashes the following commits: aad390f [Uwe L. Korn] Pass buffer sizes also as in parameter 9847171 [Uwe L. Korn] make format 855250d [Uwe L. Korn] make format 40e93de [Uwe L. Korn] Add FindBrotli 47b9d03 [Uwe L. Korn] PARQUET-769: Add support for Brotli compression Change-Id: I2f6b1c03f0b7e7d83f64d0e34859eb09f2702838
wesm
pushed a commit
to wesm/arrow
that referenced
this pull request
Sep 7, 2018
Author: Uwe L. Korn <uwelk@xhochy.com> Closes apache#194 from xhochy/PARQUET-769 and squashes the following commits: aad390f [Uwe L. Korn] Pass buffer sizes also as in parameter 9847171 [Uwe L. Korn] make format 855250d [Uwe L. Korn] make format 40e93de [Uwe L. Korn] Add FindBrotli 47b9d03 [Uwe L. Korn] PARQUET-769: Add support for Brotli compression Change-Id: I2f6b1c03f0b7e7d83f64d0e34859eb09f2702838
wesm
pushed a commit
to wesm/arrow
that referenced
this pull request
Sep 8, 2018
Author: Uwe L. Korn <uwelk@xhochy.com> Closes apache#194 from xhochy/PARQUET-769 and squashes the following commits: aad390f [Uwe L. Korn] Pass buffer sizes also as in parameter 9847171 [Uwe L. Korn] make format 855250d [Uwe L. Korn] make format 40e93de [Uwe L. Korn] Add FindBrotli 47b9d03 [Uwe L. Korn] PARQUET-769: Add support for Brotli compression Change-Id: I2f6b1c03f0b7e7d83f64d0e34859eb09f2702838
rafael-telles
pushed a commit
to rafael-telles/arrow
that referenced
this pull request
Nov 9, 2021
…3Alt [C++] Implement FindSqLite3Alt on CMake
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Added a couple ways to do this, either via the
--with-parquet
command line option (preferred) or by passing through an option to CMake