You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cast string "1582-10-15 23:59:59.0" not correct to "1582-10-15 18:09:39.0".
Break UT: "cast timestamp without time zone to timestamp with local time zone"
cast "0001-01-01 05:50:20" as timestamp_ntz not correct to "0001-01-01T05:50:20"
Break UT: "cast timestamp with local time zone to timestamp without timezone"
string being cast to a day-time interval does not have a valid format, or out of acceptable range or overflow issue.
Break UT "Cast string to day-time interval"
string format provided for the cast operation was invalid.
Break UT: "Take into account day-time interval fields in cast"
IExampleBaseType is not presumably a user-defined type, not annotated with @SQLUserDefinedType or registed with UDTRegistration.
Break UT "cast from a derived user-defined type to a base type"
Incorrect evaluation: cast(2015 as timestamp), actual: 2015-01-01 00:00:00.0, expected: 2015-01-01 04:00:00.0
Break UT "cast string to timestamp", related to Timezone
Incorrect evaluation: cast(12345 as date), actual: null, expected: 345-01-01
Break UT "cast string to date", plugin doesn't support year more than 4 digits.
These excluded test cases needs further investigating!!!
Notice: Other test cases in this suite may pass with falling back!
Steps/Code to reproduce bug
Compile everything with mvn -Dbuildver=330 install -DskipTests
Pick a test case name in the above table
Go to RapidsTestSettings and find the line starting with ".exclude" and containing the test case name, comment it out
Run the Suite then you'll see one failed test case. E.g. mvn -nsu -Dbuildver=330 -pl tests -Dsuites="org.apache.spark.sql.rapids.suites.RapidsXXXSuite" test (replace RapidsXXXSuite with the right name in issue header). ALWAYS double check if your suite name coincide with in source code, as it may contain typos!
Expected behavior
The suite can pass without excluding any test case.
The text was updated successfully, but these errors were encountered:
Describe the bug
Spark UT Framework enabled RapidsCastSuite (#10743), with the following test cases explicitly excluded:
Break UT "Process Infinity, -Infinity, NaN in case insensitive manner"
Break UT: "cast timestamp without time zone to timestamp with local time zone"
Break UT: "cast timestamp with local time zone to timestamp without timezone"
Break UT "Cast string to day-time interval"
Break UT: "Take into account day-time interval fields in cast"
Break UT "casting to fixed-precision decimals"
Break UT "cast from a derived user-defined type to a base type"
Break UT "cast string to timestamp", related to Timezone
Break UT "cast string to date", plugin doesn't support year more than 4 digits.
These excluded test cases needs further investigating!!!
Notice: Other test cases in this suite may pass with falling back!
Steps/Code to reproduce bug
mvn -Dbuildver=330 install -DskipTests
mvn -nsu -Dbuildver=330 -pl tests -Dsuites="org.apache.spark.sql.rapids.suites.RapidsXXXSuite" test
(replace RapidsXXXSuite with the right name in issue header). ALWAYS double check if your suite name coincide with in source code, as it may contain typos!Expected behavior
The suite can pass without excluding any test case.
The text was updated successfully, but these errors were encountered: