You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A column with type TINYINT(1) UNSIGNED is returned as a bool by MySqlConnector, but as byte by Connector/NET (the same as TINYINT UNSIGNED). We should also return byte.
The text was updated successfully, but these errors were encountered:
+1 "byte" is the correct return value and for compatibility with Connector/NET. On Wednesday, July 11, 2018, 12:52:23 AM GMT+8, Bradley Grainger <notifications@github.com> wrote:
A column with type TINYINT(1) UNSIGNED is returned as a bool by MySqlConnector, but as byte by Connector/NET (the same as TINYINT UNSIGNED). We should also return byte.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.
A column with type
TINYINT(1) UNSIGNED
is returned as abool
by MySqlConnector, but asbyte
by Connector/NET (the same asTINYINT UNSIGNED
). We should also returnbyte
.The text was updated successfully, but these errors were encountered: