-
Notifications
You must be signed in to change notification settings - Fork 547
[GLUTEN-11145][VL] Iceberg test supports Spark3.5 and Spark4.0 #11146
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
base: main
Are you sure you want to change the base?
Conversation
|
Run Gluten Clickhouse CI on x86 |
| export PATH=$JAVA_HOME/bin:$PATH | ||
| java -version | ||
| $MVN_CMD clean test -Pspark-4.0 -Pscala-2.13 -Pjava-17 -Pbackends-velox \ | ||
| -Piceberg |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missed ' \'
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok, Thanks!
3568558 to
e9e9a79
Compare
|
Run Gluten Clickhouse CI on x86 |
|
|
||
| import scala.Option; | ||
| import scala.collection.JavaConversions; | ||
| import scala.jdk.CollectionConverters; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because scala 2.12 and 2.13 compatibility
|
|
||
| public static Dataset<Row> internalCreateDataFrame( | ||
| SparkSession spark, RDD<InternalRow> rdd, StructType schema, boolean isStreaming) { | ||
| return ((org.apache.spark.sql.classic.SparkSession) spark) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to cast to org.apache.spark.sql.classic.SparkSession
e9e9a79 to
a2c9901
Compare
|
Run Gluten Clickhouse CI on x86 |
3 similar comments
|
Run Gluten Clickhouse CI on x86 |
|
Run Gluten Clickhouse CI on x86 |
|
Run Gluten Clickhouse CI on x86 |
| Option<String> msg = | ||
| QueryTest.getErrorMessageInCheckAnswer( | ||
| df, JavaConversions.asScalaBuffer(rows).toSeq(), true); | ||
| df, JavaConverters.asScalaBuffer(rows).toSeq(), true); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For scala 2.12 and 2.13 compatibility
5e8ffe3 to
48ed4fc
Compare
|
Run Gluten Clickhouse CI on x86 |
|
Run Gluten Clickhouse CI on x86 |
Related issue: #11145