Skip to content

Commit 2f350c9

Browse files
committed
[spark] Disable v2 write in v1 append location unit tests
1 parent 9fbfccd commit 2f350c9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/utitcase-spark-3.x.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
jvm_timezone=$(random_timezone)
6464
echo "JVM timezone is set to $jvm_timezone"
6565
test_modules=""
66-
for suffix in ut 3.5 3.4; do
66+
for suffix in ut 3.5 3.4 3.3 3.2; do
6767
test_modules+="org.apache.paimon:paimon-spark-${suffix}_${{ matrix.scala_version }},"
6868
done
6969
test_modules="${test_modules%,}"

paimon-spark/paimon-spark-common/src/main/java/org/apache/paimon/spark/SparkConnectorOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public class SparkConnectorOptions {
4949
public static final ConfigOption<Boolean> USE_V2_WRITE =
5050
key("write.use-v2-write")
5151
.booleanType()
52-
.defaultValue(true)
52+
.defaultValue(false)
5353
.withDescription(
5454
"If true, v2 write will be used. Currently, only HASH_FIXED and BUCKET_UNAWARE bucket modes are supported. Will fall back to v1 write for other bucket modes. Currently, Spark V2 write does not support TableCapability.STREAMING_WRITE and TableCapability.ACCEPT_ANY_SCHEMA.");
5555

0 commit comments

Comments
 (0)