Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions docs/content/primary-key-table/chain-table.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ Notice that:
- Chain table should ensure that the schema of each branch is consistent.
- Only spark support now, flink will be supported later.
- Chain compact is not supported for now, and it will be supported later.
- Deletion vector is not supported for chain table.

After creating a chain table, you can read and write data in the following ways.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -722,6 +722,9 @@ public static void validateChainTable(TableSchema schema, CoreOptions options) {
changelogProducer == ChangelogProducer.NONE
|| changelogProducer == ChangelogProducer.INPUT,
"Changelog producer must be none or input for chain table.");
Preconditions.checkArgument(
!options.deletionVectorsEnabled(),
"Chain table do not support enable deletion vector");
Preconditions.checkArgument(
options.partitionTimestampPattern() != null,
"Partition timestamp pattern is required for chain table.");
Expand Down