test: Add Iceberg branch and tags support related tests in Prestissimo#27272
Merged
agrawalreetika merged 1 commit intoprestodb:masterfrom Mar 9, 2026
Merged
Conversation
Contributor
Reviewer's GuideAdds Prestissimo native Iceberg tests that exercise branch and tag querying and mutation semantics, validating both FOR SYSTEM_VERSION AS OF and dot-notation syntax, plus refs-table visibility and failure modes for unsupported or invalid operations. File-Level Changes
Possibly linked issues
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Contributor
There was a problem hiding this comment.
Hey - I've left some high level feedback:
- In the negative tests you often use very generic failure matchers like
(?s).*; consider asserting on a more specific substring of the expected error message (as you did with tag/branch names) so regressions in failure modes are more precisely detected. - There is a fair amount of duplication in the setup/teardown patterns (e.g.,
DROP TABLE IF EXISTS+CREATE TABLEwith similar schemas); extracting small helper methods for common patterns could make the tests shorter and easier to maintain.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- In the negative tests you often use very generic failure matchers like `(?s).*`; consider asserting on a more specific substring of the expected error message (as you did with tag/branch names) so regressions in failure modes are more precisely detected.
- There is a fair amount of duplication in the setup/teardown patterns (e.g., `DROP TABLE IF EXISTS` + `CREATE TABLE` with similar schemas); extracting small helper methods for common patterns could make the tests shorter and easier to maintain.Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
9c8ec5f to
702a491
Compare
steveburnett
requested changes
Mar 6, 2026
Contributor
steveburnett
left a comment
There was a problem hiding this comment.
Thanks for the doc! Just one nit, looks good!
hantangwangd
previously approved these changes
Mar 7, 2026
Member
hantangwangd
left a comment
There was a problem hiding this comment.
Thanks @agrawalreetika, lgtm apart from @steveburnett's comment.
702a491 to
3e94b74
Compare
hantangwangd
approved these changes
Mar 9, 2026
steveburnett
approved these changes
Mar 9, 2026
Contributor
steveburnett
left a comment
There was a problem hiding this comment.
LGTM! (docs)
Pull updated branch, new local doc build, looks good. Thanks!
This was referenced Mar 31, 2026
15 tasks
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 free
to 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.
Description
Add Iceberg branch and tags support related tests in Prestissimo
Motivation and Context
Add Iceberg branch and tags support related tests in Prestissimo
Impact
Add Iceberg branch and tags support related tests in Prestissimo
Test Plan
Test Added
Contributor checklist
Release Notes
Please follow release notes guidelines and fill in the release notes below.
Summary by Sourcery
Add native execution tests for Iceberg table branches and tags behavior in Prestissimo.
Tests: