fix(opencode): compare ID timestamps numerically in isAfter() to handle 48-bit overflow - #42684
Closed
ar1vit0r wants to merge 1 commit into
Closed
fix(opencode): compare ID timestamps numerically in isAfter() to handle 48-bit overflow#42684ar1vit0r wants to merge 1 commit into
ar1vit0r wants to merge 1 commit into
Conversation
…le 48-bit overflow
Contributor
|
Thanks for updating your PR! It now meets our contributing guidelines. 👍 |
Scope: replaces the string tiebreak in
|
Author
|
Closing — the change is a no-op (fixed-width hex string comparison is already identical to numeric comparison of the embedded timestamp) and adds a crash path on non-hex IDs. The existing tiebreak is correct. Thanks to @Enough1122 for the thorough review. |
6 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.
Issue for this PR
Closes #42639
Type of change
What does this PR do?
MessageV2.latest() uses isAfter() to find the most recent user/assistant message. The tiebreaker compared IDs as strings, but the 6-byte timestamp field in ascending IDs overflows 2^48 since ~2023, making string comparison give wrong results after wraparound. Now extracts the timestamp hex from each ID and compares numerically via BigInt.
How did you verify your code works?
Code review -- the overflow math is straightforward. The primary comparison (time.created) is unchanged; only the equal-timestamp tiebreaker is fixed.
Checklist