-
Notifications
You must be signed in to change notification settings - Fork 119
Upgrade arrow library and fix incompatibilities #9090
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: master
Are you sure you want to change the base?
Upgrade arrow library and fix incompatibilities #9090
Conversation
Co-authored-by: laymanmlai <[email protected]>
|
Cursor Agent can help with this pull request. Just |
|
|
|
请在 PR 中添加项目标签,例如: |
|
请在 PR 中添加类型标签,例如: |
Co-authored-by: laymanmlai <[email protected]>
|
请在 PR 中添加项目标签,例如: |
|
请在 PR 中添加类型标签,例如: |
This change ensures consistent use of integer timestamps for all time-related operations, improving accuracy and performance. Co-authored-by: laymanmlai <[email protected]>
|
请在 PR 中添加类型标签,例如: |
|
请在 PR 中添加项目标签,例如: |
This change standardizes the use of `int_timestamp` over `timestamp` when working with arrow objects to ensure consistent integer representations of time. Co-authored-by: laymanmlai <[email protected]>
|
请在 PR 中添加类型标签,例如: |
|
请在 PR 中添加项目标签,例如: |
Upgrade
arrowdependency to 1.2.3 and migratearrow.replace()calls toarrow.shift()for relative time adjustments in thebkmonitorsubproject.The
arrowlibrary'sreplace()method in older versions (like 0.6.0) allowed for both absolute assignments and relative offsets. Inarrow1.0.0 and later,replace()was strictly defined for absolute assignments, andshift()was introduced for relative time adjustments. This PR updates all relativereplace()calls toshift()to ensure compatibility with the newarrowversion.