SNOW-3243341: e2e tests for pyarrow & pandas type conversion#629
Open
sfc-gh-asolarski wants to merge 1 commit intographite-base/629from
Open
Conversation
1 task
Contributor
Author
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
How to use the Graphite Merge QueueAdd either label to this PR to merge it via the merge queue:
You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
9f76ee7 to
3201d1d
Compare
3201d1d to
fa645ee
Compare
aaa3c37 to
3a201f9
Compare
This was referenced Mar 20, 2026
3a201f9 to
6b7f846
Compare
fa645ee to
5469b66
Compare
6b7f846 to
8ecee48
Compare
5469b66 to
7e3c6db
Compare
8ecee48 to
a514d83
Compare
075543b to
905880c
Compare
a514d83 to
7459114
Compare
905880c to
99ec8bc
Compare
7459114 to
c5c81e3
Compare
99ec8bc to
78f826e
Compare
78f826e to
7bc43ec
Compare
c5c81e3 to
cffae81
Compare
7bc43ec to
883c73a
Compare
sfc-gh-turbaszek
approved these changes
Mar 23, 2026
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
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.

Update Python reference driver version and expand pandas/arrow fetch tests
Updates the default Python reference driver version from 4.2.0 to 4.3.0 in the pyproject.toml configuration for both standard and pandas environments.
Expands test coverage for pandas and arrow fetch methods by replacing simple multi-column tests with comprehensive type-specific parameterized tests. Each Snowflake data type (NUMBER, VARCHAR, FLOAT, BOOLEAN, DATE, TIME, TIMESTAMP variants, BINARY, VARIANT, ARRAY, OBJECT) now has dedicated test cases that verify correct value handling and null value processing.
Adds new test scenarios for advanced fetch options including decimal conversion via
arrow_number_to_decimalsetting, microsecond precision forcing for timestamps, and Arrow type validation for empty result sets withforce_return_table=True.