Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
a69ec52
rebase
eric-maynard Jun 10, 2025
0bba5ef
lint
eric-maynard Jun 10, 2025
9ecc2be
some changes per comments
eric-maynard Jun 18, 2025
3cd2819
Merge branch 'main' of ssh://github.com-oss/apache/iceberg into parqu…
eric-maynard Jun 18, 2025
8d186fe
javadoc
eric-maynard Jun 23, 2025
5ce8913
lint
eric-maynard Jun 23, 2025
9fe0bba
create class
eric-maynard Jun 23, 2025
6cecf96
remove clash
eric-maynard Jun 23, 2025
2ce2590
Merge branch 'parquet-v2-refactor' of ssh://github.com-oss/eric-mayna…
eric-maynard Jun 23, 2025
3aed168
refactoring
eric-maynard Jun 23, 2025
98d1c5c
clean up
eric-maynard Jun 23, 2025
b72e338
wire up
eric-maynard Jun 23, 2025
b76cc47
tweak header
eric-maynard Jun 25, 2025
ec07775
check in
eric-maynard Jun 25, 2025
c79a77c
resolve conflicts
eric-maynard Jun 26, 2025
1969466
debugging
eric-maynard Jun 27, 2025
d2b173b
debugging
eric-maynard Jun 27, 2025
1f219e5
debugging commit
eric-maynard Jul 1, 2025
21c11d8
move code
eric-maynard Jul 1, 2025
e4bc23f
switch back to floats
eric-maynard Jul 1, 2025
a88af2e
clean a bit
eric-maynard Jul 1, 2025
c375e99
semistable
eric-maynard Jul 1, 2025
f8cfbb2
polish
eric-maynard Jul 1, 2025
9d27297
stable:
eric-maynard Jul 1, 2025
d75f85e
spotless; polish
eric-maynard Jul 1, 2025
03f6395
spotless
eric-maynard Jul 1, 2025
c39570d
fix lints
eric-maynard Jul 2, 2025
3a73ecc
review comments
eric-maynard Jul 15, 2025
44a81ac
amogh comments
eric-maynard Jul 21, 2025
d584753
russell comments
eric-maynard Jul 21, 2025
d253f1b
spotless
eric-maynard Jul 21, 2025
e0b505b
retry docs
eric-maynard Jul 22, 2025
97a315e
javadoc fix
eric-maynard Jul 22, 2025
dfb7b77
putInt
eric-maynard Jul 29, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
debugging
  • Loading branch information
eric-maynard committed Jun 27, 2025
commit 1969466d696f963eb18a6513a515244879f0dff9
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
import static org.assertj.core.api.Assumptions.assumeThat;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.Iterator;
import org.apache.iceberg.Files;
Expand All @@ -50,6 +51,7 @@
import org.apache.parquet.schema.GroupType;
import org.apache.parquet.schema.MessageType;
import org.apache.parquet.schema.Type;
import org.apache.spark.sql.catalyst.plans.logical.Except;
import org.apache.spark.sql.vectorized.ColumnarBatch;
import org.junit.jupiter.api.Test;

Expand Down Expand Up @@ -298,9 +300,11 @@ public void testSupportedReadsForParquetV2() throws Exception {
// (i.e. decimals > 8 bytes)
Schema schema =
new Schema(
optional(102, "float_data", Types.FloatType.get()),
optional(103, "double_data", Types.DoubleType.get()),
optional(104, "decimal_data", Types.DecimalType.of(25, 5)));
// optional(102, "float_data", Types.FloatType.get()),
// optional(103, "double_data", Types.DoubleType.get()),
// optional(104, "decimal_data", Types.DecimalType.of(25, 5)),
optional(105, "int_data", Types.IntegerType.get()),
optional(106, "long_data", Types.LongType.get()));

File dataFile = File.createTempFile("junit", null, temp.toFile());
assertThat(dataFile.delete()).as("Delete should succeed").isTrue();
Expand Down