Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mxp/cancun/columns/common.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
;; mdule will be used from Cancun fork and on

(defcolumns
( MXP_STAMP :i16 )
( CN :i64 )
( MXP_STAMP :i32 )
( CN :i32 )
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Column Type Change Causes Integer Overflow

The CN column type changed from :i64 to :i32, significantly reducing its maximum storable value range. This could cause integer overflow, data truncation, or runtime errors if CN values exceed the 32-bit signed integer limit (-2,147,483,648 to 2,147,483,647).

Fix in Cursor Fix in Web

( DECODER :binary@prove )
( MACRO :binary@prove )
( SCENARIO :binary@prove )
Expand Down
Loading