Closed jchrys closed 3 months ago
Motivation: Currently, the R2DBC MySQL connector does not support the tinyInt1isBit MySQL parameter.
tinyInt1isBit
Modifications: Updated the mapping of TINYINT(1) or BIT(1) values to boolean based on the tinyInt1isBit parameter.
TINYINT(1)
BIT(1)
Result: Properly supports the tinyInt1isBit parameter. Resolves #277
TODO
Only signed tinyint(1) be treated as bit or boolean https://bugs.mysql.com/bug.php?id=100722
Motivation: Currently, the R2DBC MySQL connector does not support the
tinyInt1isBit
MySQL parameter.Modifications: Updated the mapping of
TINYINT(1)
orBIT(1)
values to boolean based on thetinyInt1isBit
parameter.Result: Properly supports the
tinyInt1isBit
parameter. Resolves #277TODO