[Sqlalchemy-tickets] Issue #3186: add special logic to suit MySQLs "sort of native boolean" thing (
Brought to you by:
zzzeek
|
From: Mike B. <iss...@bi...> - 2014-09-05 14:59:33
|
New issue 3186: add special logic to suit MySQLs "sort of native boolean" thing https://bitbucket.org/zzzeek/sqlalchemy/issue/3186/add-special-logic-to-suit-mysqls-sort-of Mike Bayer: we can turn on the supports_native_boolean flag in MySQL and most things work, because it has names "BOOL", "true", "false" as aliases for tinyint, 1 and 0, plus "is" works. But of course not everything works, we get back 1s and 0s for some things so it doesnt support "native_boolean" fully. We need to provide workarounds for it. |