-
Notifications
You must be signed in to change notification settings - Fork 498
Implement determine_timestamp using constraints
#27815
New issue
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
Merged
DAlperin
merged 30 commits into
MaterializeInc:main
from
frankmcsherry:determine_timestamp_constraints
Mar 26, 2025
Merged
Changes from 19 commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
a543334
Implement determine_timestamp using constraints
frankmcsherry a6a9a25
Merge remote-tracking branch 'origin/main' into determine_timestamp_c…
DAlperin f31e1c2
Better logging
DAlperin 36a5586
Fix minimization
DAlperin bf997b5
Fix strong session serializable timestamp selection logic in the cons…
DAlperin d51ef8d
Add EXPLAIN TIMESTAMP support
DAlperin e2e0d34
Improve output
DAlperin 7b8baf3
remove unused import.
DAlperin 5552fb4
update sql test to reflect new explain contents
DAlperin 307843b
Fix testdrive
DAlperin 20ce3a1
Don't add unneeded constraints
DAlperin 284d2a4
fix tests
DAlperin dd20c58
fix more tests
DAlperin f087206
dyncfg
DAlperin a25c4e1
fix rust tests
DAlperin 3534a30
Add metrics
DAlperin 11aa520
unbreak
DAlperin 9442655
fix timestamp selection test
DAlperin 0438397
oops, return the right selection
DAlperin ee6888a
clippy
DAlperin 84b6c5f
Fix materialized_views.py
DAlperin c028fcf
This test file is liable to be the death of me
DAlperin 9531fea
Address notes from frank
DAlperin dc672a5
add copyright header
DAlperin 0bcb8b0
fix test build
DAlperin 7cb1536
oh fine
DAlperin cf406cc
truncate if needed
DAlperin 08c5b16
Address feedback
DAlperin 81f7c8c
I literally can't tell what this test wants anymore
DAlperin 4b59ced
import default directly
DAlperin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this the right file for this? It seems less like "timestamp oracle" material and more "timestamp selection" material, which uses the oracle as input, but uses various other things as input as well. Would
timestamp_selection.rsbe more appropriate, or is there a reason to put it here?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The reason is I misread it and thought it did say timestamp selection :) will fix