Opened 8 years ago

Closed 8 years ago

#27681 closed Bug (fixed)

Binary &/| operators work incorrectly for negative values on MySQL

Reported by: Mariusz Felisiak Owned by: Mariusz Felisiak
Component: Database layer (models, ORM) Version: 1.10
Severity: Normal Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

MySQL's binary operators return an unsigned 64-bit integer which means they don't return the same results as other databases.

PR

Change History (2)

comment:1 by Tim Graham, 8 years ago

Triage Stage: AcceptedReady for checkin

comment:2 by Tim Graham <timograham@…>, 8 years ago

Resolution: fixed
Status: assignedclosed

In fd2f7e47:

Fixed #27681 -- Fixed binary &/| operators for negative values on MySQL.

Note: See TracTickets for help on using tickets.
Back to Top