We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
VL (Velox)
Results are mismatch with vanilla Spark setting "spark.sql.legacy.timeParserPolicy" to "LEGACY" when using unix_timestamp(yyyy-MM-dd HH:mm:ss,SSS).
create table sql:
CREATE TABLE tbl(a STRING) ; insert into tbl values("2022-01-04 14:52:40.017")
gluten result:
select unix_timestamp(a) from tbl; > NULL
spark3.5 result:
set spark.sql.legacy.timeParserPolicy=LEGACY; select unix_timestamp(a) from tbl; > 1641279160
Spark-3.5.x
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Backend
VL (Velox)
Bug description
Results are mismatch with vanilla Spark setting "spark.sql.legacy.timeParserPolicy" to "LEGACY" when using unix_timestamp(yyyy-MM-dd HH:mm:ss,SSS).
create table sql:
gluten result:
spark3.5 result:
Spark version
Spark-3.5.x
Spark configurations
No response
System information
No response
Relevant logs
No response
The text was updated successfully, but these errors were encountered: