We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c709426 commit 983f87eCopy full SHA for 983f87e
2 files changed
carpet-record/src/main/java/com/jerolba/carpet/CarpetWriter.java
@@ -43,7 +43,6 @@
43
*
44
* <pre>{@code
45
* .withWriteMode(Mode.OVERWRITE)
46
- * .withWriterVersion(WriterVersion.PARQUET_2_0)
47
* .withCompressionCodec(CompressionCodecName.SNAPPY)
48
49
* }</pre>
@@ -150,7 +149,6 @@ public static class Builder<T> {
150
149
public Builder(OutputFile path, Class<T> recordClass) {
151
builder = CarpetParquetWriter.builder(path, recordClass)
152
.withWriteMode(Mode.OVERWRITE)
153
- .withWriterVersion(WriterVersion.PARQUET_2_0)
154
.withCompressionCodec(CompressionCodecName.SNAPPY);
155
}
156
gradle.properties
@@ -1,5 +1,5 @@
1
group = com.jerolba.carpet
2
-version = 0.0.7
+version = 0.0.8
3
4
parquetVersion = 1.13.0
5
hadoopVersion = 3.3.5
0 commit comments