-
Notifications
You must be signed in to change notification settings - Fork 286
add committs in objects #22529
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
base: main
Are you sure you want to change the base?
add committs in objects #22529
Conversation
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
User description
What type of PR is this?
Which issue(s) this PR fixes:
issue #22524
What this PR does / why we need it:
PR Type
Enhancement
Description
Add commit timestamp column to all objects for data change backtracing
Handle legacy objects without commit timestamps by returning ConstNull vectors
Refactor column reading logic to support special commit timestamp column
Update merge and flush operations to include commit timestamps
Diagram Walkthrough
File Walkthrough
txnts.go
Add String method to TS type
pkg/container/types/txnts.go
String()
method to TS type for formatting interface compatibilityfuncs.go
Enhance column reading with commit timestamp support
pkg/objectio/funcs.go
putFillHolder
helper functiontool.go
Handle commit timestamp in object data retrieval
pkg/vm/engine/tae/rpc/tool.go
flushTableTail.go
Always include commit timestamp in flush operations
pkg/vm/engine/tae/tables/jobs/flushTableTail.go
mergeobjects.go
Always include commit timestamp in merge operations
pkg/vm/engine/tae/tables/jobs/mergeobjects.go
pnode.go
Handle legacy objects with commit timestamp fallback
pkg/vm/engine/tae/tables/pnode.go
replaceCommitts
function to handle legacy objects withouttimestamps
utils.go
Enhance column loading with commit timestamp tracking
pkg/vm/engine/tae/tables/utils.go
operations