Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
titleDeleteIndexDeletionVector.java
public interface DeletionVector {

    void delete(long position);

    boolean checkedDelete(long position);
    
    boolean isDeleted(long position);

    boolean isEmpty();

    byte[] serializeToBytes();

    DeleteIndex deserializeFromBytes(byte[] bytes);
}

...

  • Integrate deletion vectors into the with append table;
  • ...


[1]: https://github.com/apache/iceberg

...