- Notifications
You must be signed in to change notification settings - Fork 321
chore: consolidate PyarrowVersions helpers #1679
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
Changes from all commits
Commits
Show all changes
16 commits Select commit Hold shift + click to select a range
96aa245 chore: consolidate pyarrow helpers
Linchin cc9918d complete refactor
Linchin 9804f3f Merge branch 'main' into pyarrow
Linchin 4e54c0f consolidate pyarrow version checking usage
Linchin ae5a434 add unit tests
Linchin fb9aa5f Merge branch 'googleapis:main' into pyarrow
Linchin 76b5cd0 fix unit_noextras testing error
Linchin d0f8e42 fix tests
Linchin 4c3adef Merge branch 'main' into pyarrow
Linchin 6e8d8a5 Merge branch 'main' into pyarrow
Linchin 465e378 address comments
Linchin ab266a7 fix tests
Linchin 1903dae coverage
Linchin b6cec08 accept suggestion
Linchin 0b827e0 accept suggestion
Linchin c1b8d0d address comments
Linchin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,123 @@ | ||
| # Copyright 2023 Google LLC | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
| | ||
| """Shared helper functions for connecting BigQuery and pyarrow.""" | ||
| | ||
| from typing import Any | ||
| | ||
| from packaging import version | ||
| | ||
| try: | ||
| import pyarrow # type: ignore | ||
| except ImportError: # pragma: NO COVER | ||
| pyarrow = None | ||
| | ||
| | ||
| def pyarrow_datetime(): | ||
| return pyarrow.timestamp("us", tz=None) | ||
| | ||
| | ||
| def pyarrow_numeric(): | ||
| return pyarrow.decimal128(38, 9) | ||
| | ||
| | ||
| def pyarrow_bignumeric(): | ||
| # 77th digit is partial. | ||
| # https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#decimal_types | ||
| return pyarrow.decimal256(76, 38) | ||
| | ||
| | ||
| def pyarrow_time(): | ||
| return pyarrow.time64("us") | ||
| | ||
| | ||
| def pyarrow_timestamp(): | ||
| return pyarrow.timestamp("us", tz="UTC") | ||
| | ||
| | ||
| _BQ_TO_ARROW_SCALARS = {} | ||
| _ARROW_SCALAR_IDS_TO_BQ = {} | ||
| | ||
| if pyarrow: | ||
| # This dictionary is duplicated in bigquery_storage/test/unite/test_reader.py | ||
| # When modifying it be sure to update it there as well. | ||
| # Note(todo!!): type "BIGNUMERIC"'s matching pyarrow type is added in _pandas_helpers.py | ||
| _BQ_TO_ARROW_SCALARS = { | ||
| "BOOL": pyarrow.bool_, | ||
| "BOOLEAN": pyarrow.bool_, | ||
| "BYTES": pyarrow.binary, | ||
| "DATE": pyarrow.date32, | ||
| "DATETIME": pyarrow_datetime, | ||
| "FLOAT": pyarrow.float64, | ||
| "FLOAT64": pyarrow.float64, | ||
| "GEOGRAPHY": pyarrow.string, | ||
| "INT64": pyarrow.int64, | ||
| "INTEGER": pyarrow.int64, | ||
| "NUMERIC": pyarrow_numeric, | ||
| "STRING": pyarrow.string, | ||
| "TIME": pyarrow_time, | ||
| "TIMESTAMP": pyarrow_timestamp, | ||
| } | ||
| | ||
| _ARROW_SCALAR_IDS_TO_BQ = { | ||
| # https://arrow.apache.org/docs/python/api/datatypes.html#type-classes | ||
| pyarrow.bool_().id: "BOOL", | ||
| pyarrow.int8().id: "INT64", | ||
| pyarrow.int16().id: "INT64", | ||
| pyarrow.int32().id: "INT64", | ||
| pyarrow.int64().id: "INT64", | ||
| pyarrow.uint8().id: "INT64", | ||
| pyarrow.uint16().id: "INT64", | ||
| pyarrow.uint32().id: "INT64", | ||
| pyarrow.uint64().id: "INT64", | ||
| pyarrow.float16().id: "FLOAT64", | ||
| pyarrow.float32().id: "FLOAT64", | ||
| pyarrow.float64().id: "FLOAT64", | ||
| pyarrow.time32("ms").id: "TIME", | ||
| pyarrow.time64("ns").id: "TIME", | ||
| pyarrow.timestamp("ns").id: "TIMESTAMP", | ||
| pyarrow.date32().id: "DATE", | ||
| pyarrow.date64().id: "DATETIME", # because millisecond resolution | ||
| pyarrow.binary().id: "BYTES", | ||
| pyarrow.string().id: "STRING", # also alias for pyarrow.utf8() | ||
| # The exact scale and precision don't matter, see below. | ||
| pyarrow.decimal128(38, scale=9).id: "NUMERIC", | ||
tswast marked this conversation as resolved. Show resolved Hide resolved | ||
| } | ||
| | ||
| # Adds bignumeric support only if pyarrow version >= 3.0.0 | ||
| # Decimal256 support was added to arrow 3.0.0 | ||
| # https://arrow.apache.org/blog/2021/01/25/3.0.0-release/ | ||
| if version.parse(pyarrow.__version__) >= version.parse("3.0.0"): | ||
| _BQ_TO_ARROW_SCALARS["BIGNUMERIC"] = pyarrow_bignumeric | ||
| # The exact decimal's scale and precision are not important, as only | ||
| # the type ID matters, and it's the same for all decimal256 instances. | ||
| _ARROW_SCALAR_IDS_TO_BQ[pyarrow.decimal256(76, scale=38).id] = "BIGNUMERIC" | ||
| | ||
| | ||
| def bq_to_arrow_scalars(bq_scalar: str): | ||
| """ | ||
| Returns: | ||
| The Arrow scalar type that the input BigQuery scalar type maps to. | ||
| If it cannot find the BigQuery scalar, return None. | ||
| """ | ||
| return _BQ_TO_ARROW_SCALARS.get(bq_scalar) | ||
| | ||
| | ||
| def arrow_scalar_ids_to_bq(arrow_scalar: Any): | ||
| """ | ||
| Returns: | ||
| The BigQuery scalar type that the input arrow scalar type maps to. | ||
| If it cannot find the arrow scalar, return None. | ||
| """ | ||
| return _ARROW_SCALAR_IDS_TO_BQ.get(arrow_scalar) | ||
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.