MaxGekk commented on a change in pull request #26107: [SPARK-28885][SQL] Follow
ANSI store assignment rules in table insertion by default
URL: https://github.com/apache/spark/pull/26107#discussion_r341805513
##########
File path: sql/core/src/test/scala/org/apache/spark/sql/SQLQueryTestSuite.scala
##########
@@ -143,7 +143,19 @@ class SQLQueryTestSuite extends QueryTest with
SharedSparkSession {
/** List of test cases to ignore, in lower cases. */
protected def blackList: Set[String] = Set(
- "blacklist.sql" // Do NOT remove this one. It is here to test the
blacklist functionality.
+ "blacklist.sql", // Do NOT remove this one. It is here to test the
blacklist functionality.
+ // SPARK-28885 String value is not allowed to be stored as numeric type
with
+ // ANSI store assignment policy.
+ "postgreSQL/numeric.sql",
+ "postgreSQL/int2.sql",
+ "postgreSQL/int4.sql",
+ "postgreSQL/int8.sql",
+ "postgreSQL/float4.sql",
+ "postgreSQL/float8.sql",
+ // SPARK-28885 String value is not allowed to be stored as date/timestamp
type with
+ // ANSI store assignment policy.
+ "postgreSQL/date.sql",
Review comment:
@gengliangwang Sorry, I just realized recently that my changed are not
tested by `date.sql` and `timestamp.sql` any more when I run: `build/sbt
"sql/test-only *SQLQueryTestSuite -- -z timestamp.sql"`. Did you disable them
forever or are they executed in some way by jenkins?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]