-
Notifications
You must be signed in to change notification settings - Fork 237
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
[FEA]Audit - [SPARK-34605][SQL] Support java.time.Duration
as an external type of the day-time interval type
#1948
Comments
@tgravescs will review with @revans2 |
getConverterFortype is used in GpuRowToColumnarExec: I don't know if there is already another lira to add support for DayTimeIntervalType. I assume we need to add it to our isSupportedType checks and so forth as well. Although we may just let it fall though, do we have a standard for this @revans2 ? |
P1 for whether we support time.Duration for the cached batch serializer. P3 for whether we are going to support time.Duration. |
There are a number of new types that have been added into spark and if we run into any of them we fall back to the CPU for it. Eventually we want to add in more types, but that should not block any of the existing code/queries from working. |
Duration is an external type, Plugin do not need to handle it.
day-time interval type is stored as int64 internally in Spark, This issue supports ANSI intervals to/from Parquet: Can we close it? @revans2 |
I think we can close this because we can do columnar to row and row to columnar on these types. |
Is your feature request related to a problem? Please describe.
spark made a change to support java.time.Duration for SPARK-27790 Support ANSI SQL INTERVAL types
apache/spark@17601e0
It looks like we copied the getConverterForType function in GpuRowToColumnarExec so we should look closer at pulling that in.
https://issues.apache.org/jira/browse/SPARK-34605
The text was updated successfully, but these errors were encountered: