| Class and Description |
|---|
| org.apache.iceberg.expressions.ExpressionVisitors.BoundExpressionVisitor
use
ExpressionVisitors.BoundVisitor instead |
| Exceptions and Description |
|---|
| org.apache.iceberg.exceptions.RuntimeIOException
Use java.io.UncheckedIOException directly instead.
Exception used to wrap
IOException as a RuntimeException and add context. |
| Method and Description |
|---|
| org.apache.iceberg.Table.rollback()
Replaced by
Table.manageSnapshots() |
| org.apache.iceberg.Rollback.toSnapshotAtTime(long)
Replaced by
ManageSnapshots.rollbackToTime(long) |
| org.apache.iceberg.Rollback.toSnapshotId(long)
Replaced by
ManageSnapshots.setCurrentSnapshot(long) |
| org.apache.iceberg.OverwriteFiles.validateNoConflictingAppends(Long, Expression)
this will be removed in 0.11.0;
use
OverwriteFiles.validateNoConflictingAppends(Expression) and OverwriteFiles.validateFromSnapshot(long) instead |
| org.apache.iceberg.transforms.PartitionSpecVisitor.visit(Schema, PartitionSpec, PartitionSpecVisitor<R>)
this will be removed in 0.11.0; use
PartitionSpecVisitor.visit(PartitionSpec, PartitionSpecVisitor) instead. |
| Constructor and Description |
|---|
| org.apache.iceberg.Metrics(Long, Map<Integer, Long>, Map<Integer, Long>, Map<Integer, Long>)
will be removed in 0.12.0; use
Metrics(Long, Map, Map, Map, Map) instead. |
| org.apache.iceberg.Metrics(Long, Map<Integer, Long>, Map<Integer, Long>, Map<Integer, Long>, Map<Integer, ByteBuffer>, Map<Integer, ByteBuffer>)
will be removed in 0.12.0; use
Metrics(Long, Map, Map, Map, Map, Map, Map) instead. |