Uh oh!
There was an error while loading. Please reload this page.
[Enhancement](paimon)support native read paimon top level schema change table. (#48723) - #52174
Merged
Merged
Conversation
Thearas
commented
Jun 24, 2025
Contributor
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
hubgeter
commented
Jun 24, 2025
ContributorAuthor
run buildall |
doris-robot
commented
Jun 24, 2025
Cloud UT Coverage ReportIncrement line coverage Increment coverage report
|
hubgeter
commented
Jun 24, 2025
ContributorAuthor
run buildall |
doris-robot
commented
Jun 24, 2025
Cloud UT Coverage ReportIncrement line coverage Increment coverage report
|
hubgeter
commented
Jun 24, 2025
ContributorAuthor
run buildall |
doris-robot
commented
Jun 24, 2025
Cloud UT Coverage ReportIncrement line coverage Increment coverage report
|
doris-robot
commented
Jun 24, 2025
TPC-H: Total hot run time: 39903 ms |
doris-robot
commented
Jun 24, 2025
TPC-DS: Total hot run time: 197340 ms |
doris-robot
commented
Jun 24, 2025
ClickBench: Total hot run time: 32.01 s |
hubgeter
commented
Jun 25, 2025
ContributorAuthor
run buildall |
hello-stephen
commented
Jun 25, 2025
Contributor
Cloud UT Coverage ReportIncrement line coverage Increment coverage report
|
doris-robot
commented
Jun 25, 2025
TPC-H: Total hot run time: 39954 ms |
doris-robot
commented
Jun 25, 2025
TPC-DS: Total hot run time: 196410 ms |
doris-robot
commented
Jun 25, 2025
ClickBench: Total hot run time: 31.34 s |
hubgeter
commented
Jun 27, 2025
ContributorAuthor
run buildall |
doris-robot
commented
Jun 27, 2025
Cloud UT Coverage ReportIncrement line coverage Increment coverage report
|
…ge table. (apache#48723) Problem Summary: Supports native reader reading tables after the top-level schema of paimon is changed, but does not support tables after the internal schema of struct is changed. change top-level schema(support): ```sql --spark sql ALTER TABLE table_name ADD COLUMNS (c1 INT,c2 STRING); ALTER TABLE table_name RENAME COLUMN c0 TO c1; ALTER TABLE table_name DROP COLUMNS (c1, c2); ALTER TABLE table_name ADD COLUMN c INT FIRST; ALTER TABLE table_name ADD COLUMN c INT AFTER b; ALTER TABLE table_name ALTER COLUMN col_a FIRST; ALTER TABLE table_name ALTER COLUMN col_a AFTER col_b; ``` change internal schema of struct schema(not support, will support in the next PR): ```sql --spark sql ALTER TABLE table_name ADD COLUMN v.value.f3 STRING; ALTER TABLE table_name RENAME COLUMN v.f1 to f100; ALTER TABLE table_name DROP COLUMN v.value.f3 ; ALTER TABLE table_name ALTER COLUMN v.col_a FIRST; ```
hubgeter
commented
Jun 27, 2025
ContributorAuthor
run buildall |
doris-robot
commented
Jun 27, 2025
Cloud UT Coverage ReportIncrement line coverage Increment coverage report
|
morrySnow
approved these changes
Jun 28, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
bp #48723
What problem does this PR solve?
Problem Summary:
Supports native reader reading tables after the top-level schema of paimon is changed, but does not support tables after the internal schema of struct is changed.
change top-level schema(support):
change internal schema of struct schema(not support, will support in the next PR):
Release note
None
Check List (For Author)
Test
Behavior changed:
Does this need documentation?
Check List (For Reviewer who merge this PR)