Skip to content
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

[SPARK-51517][SQL] Support the TIME data type in Hive results #50282

Closed
wants to merge 3 commits into from

Conversation

MaxGekk
Copy link
Member

@MaxGekk MaxGekk commented Mar 14, 2025

What changes were proposed in this pull request?

In the PR, I propose to modify HiveResult to support new data type TIME.

Why are the changes needed?

Before the changes, end-to-end SQL tests fail with the error:

select time '16:39:45\t'
-- !query schema
struct<>
-- !query output
scala.MatchError
(16:39:45,TimeType(6)) (of class scala.Tuple2)

Does this PR introduce any user-facing change?

It fixes the issue. After the changes, it's possible to write *.sql over the new data type.

How was this patch tested?

By running new test:

$ build/sbt "test:testOnly *HiveResultSuite"
$ build/sbt "sql/testOnly org.apache.spark.sql.SQLQueryTestSuite -- -z time.sql"

Was this patch authored or co-authored using generative AI tooling?

No.

@github-actions github-actions bot added the SQL label Mar 14, 2025
@MaxGekk MaxGekk changed the title [WIP][SQL] Support the TIME data type in Hive results [WIP][SPARK-51517][SQL] Support the TIME data type in Hive results Mar 14, 2025
@MaxGekk MaxGekk changed the title [WIP][SPARK-51517][SQL] Support the TIME data type in Hive results [SPARK-51517][SQL] Support the TIME data type in Hive results Mar 15, 2025
@MaxGekk MaxGekk marked this pull request as ready for review March 15, 2025 06:54
Copy link
Member

@dongjoon-hyun dongjoon-hyun left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1, LGTM. Thank you, @MaxGekk .
Merged to master for Apache Spark 4.1.0.

kazemaksOG pushed a commit to kazemaksOG/spark-custom-scheduler that referenced this pull request Mar 27, 2025
### What changes were proposed in this pull request?
In the PR, I propose to modify `HiveResult` to support new data type `TIME`.

### Why are the changes needed?
Before the changes, end-to-end SQL tests fail with the error:
```sql
select time '16:39:45\t'
-- !query schema
struct<>
-- !query output
scala.MatchError
(16:39:45,TimeType(6)) (of class scala.Tuple2)
```

### Does this PR introduce _any_ user-facing change?
It fixes the issue. After the changes, it's possible to write `*.sql` over the new data type.

### How was this patch tested?
By running new test:
```
$ build/sbt "test:testOnly *HiveResultSuite"
$ build/sbt "sql/testOnly org.apache.spark.sql.SQLQueryTestSuite -- -z time.sql"
```

### Was this patch authored or co-authored using generative AI tooling?
No.

Closes apache#50282 from MaxGekk/time-toHiveResult.

Authored-by: Max Gekk <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants