We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If my records come disorderly, -D record may have been compact out of table. Then +I (which sequence number is smaller then -D record) may survive.
StreamWriteBuilder builder = getTable().newStreamWriteBuilder(); StreamTableWrite write = builder.newWrite(); write.withIOManager(new IOManagerImpl("~/temp/")); StreamTableCommit commit = builder.newCommit(); // +I[2025-04-01, 1, type1, 29, 5, name2, 29, 5, name2, null, 9223372036854775802] GenericRow genericRow = GenericRow.of( 1L, 2L, 2L); GenericRow genericRow2 = GenericRow.ofKind(RowKind.DELETE, 1L, null, Long.MAX_VALUE - 1); GenericRow genericRow3 = GenericRow.of( 1L, 1L, 1L); write.write(genericRow); commit.commit(1L, write.prepareCommit(true, 1L)); write.write(genericRow2); commit.commit(2L, write.prepareCommit(true, 2L)); readData(); write.write(genericRow3); commit.commit(3L, write.prepareCommit(true, 3L));
Record should be 1,null,Long.MAX_VALUE-1
Flink
above
--
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Search before asking
Paimon version
If my records come disorderly, -D record may have been compact out of table. Then +I (which sequence number is smaller then -D record) may survive.
Record should be 1,null,Long.MAX_VALUE-1
Compute Engine
Flink
Minimal reproduce step
above
What doesn't meet your expectations?
--
Anything else?
No response
Are you willing to submit a PR?
The text was updated successfully, but these errors were encountered: