[SPARK-5722] [SQL] [PySpark] infer int as LongType in Python (for 1.2 branch)#4681
Closed
davies wants to merge 1 commit intoapache:branch-1.2from
Closed
[SPARK-5722] [SQL] [PySpark] infer int as LongType in Python (for 1.2 branch)#4681davies wants to merge 1 commit intoapache:branch-1.2from
davies wants to merge 1 commit intoapache:branch-1.2from
Conversation
|
Test build #27694 has started for PR 4681 at commit
|
|
Test build #27694 has finished for PR 4681 at commit
|
|
Test PASSed. |
asfgit
pushed a commit
that referenced
this pull request
Feb 24, 2015
… branch) This PR change to use LongType for int in Python, when inferSchema(), because IntegerType in SQL is not enough for int in Python (which is 64-bit on 64-bit machines). Closes #4521 cc dondrake marmbrus Author: Davies Liu <davies@databricks.com> Closes #4681 from davies/long2 and squashes the following commits: 05ef1c8 [Davies Liu] infer LongType for int in Python
Contributor
|
Merged to branch-1.2 @davies can you close this issue? |
Contributor
Author
|
Thanks! |
markhamstra
pushed a commit
to markhamstra/spark
that referenced
this pull request
Feb 24, 2015
… branch) This PR change to use LongType for int in Python, when inferSchema(), because IntegerType in SQL is not enough for int in Python (which is 64-bit on 64-bit machines). Closes apache#4521 cc dondrake marmbrus Author: Davies Liu <davies@databricks.com> Closes apache#4681 from davies/long2 and squashes the following commits: 05ef1c8 [Davies Liu] infer LongType for int in Python
sunchao
pushed a commit
to sunchao/spark
that referenced
this pull request
Jun 2, 2023
PRs Merged 1. [Internal] Add AppleAwsClientFactory for Mascot (apache#577) 2. Hive: Log new metadata location in commit (apache#4681) 3. change timeout to 120 for now (apache#661) 4. Internal: Add hive_catalog parameter to SparkCatalog (apache#670) 5. Internal: Pull catalog setting to CachedClientPool (apache#673) 6. Core: Defer reading Avro metadata until ManifestFile is read (apache#5206) 7. API: Fix ID assignment in schema merging (apache#5395) 8. AWS: S3OutputStream - failure to close should persist on subsequent close calls (apache#5311) 9. API: Allow schema updates to find fields with case-insensitivity (apache#5440) 10. Spark 3.3: Spark mergeSchema to respect Spark Case Sensitivity Configuration (apache#5441)
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.
This PR change to use LongType for int in Python, when inferSchema(), because IntegerType in SQL is not enough for int in Python (which is 64-bit on 64-bit machines).
Closes #4521
cc @dondrake @marmbrus