-
Notifications
You must be signed in to change notification settings - Fork 513
docs: fix and improve the description about row id #5463
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
Conversation
|
Codex usage limits have been reached for code reviews. Please check with the admins of this repo to increase the limits by adding credits. |
wjones127
left a comment
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.
Thanks for working on this. Have a few minor comments.
Co-authored-by: Will Jones <willjones127@gmail.com>
Co-authored-by: Will Jones <willjones127@gmail.com>
Co-authored-by: Will Jones <willjones127@gmail.com>
Co-authored-by: Will Jones <willjones127@gmail.com>
|
@wjones127, I have addressed the comments. Please take a look. |
|
|
||
| Each row tracks the version at which it was last modified. | ||
| When a row is created, `last_updated_at_version` equals `created_at_version`. | ||
| When a row is updated, a new row is created with both `created_at_version` and `last_updated_at_version` set to the current version, and the old row is marked deleted. |
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.
Seems like the old row only marked deleted, not modify the last_updated_at_version?
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.
yes, if we enable the stable row ID feature, when updating, the old row is only marked deleted, and the last_updated_at_version will be tracked in the new fragment for the same row id.
There are some misunderstood for users about the
row IDin the doc. See: #4935 (comment)This PR tries to correct and improve it.