[Sqlalchemy-tickets] Issue #3263: ValueError on fulltext match in MySQL (zzzeek/sqlalchemy)
Brought to you by:
zzzeek
|
From: Ian C. <iss...@bi...> - 2014-12-04 04:10:33
|
New issue 3263: ValueError on fulltext match in MySQL https://bitbucket.org/zzzeek/sqlalchemy/issue/3263/valueerror-on-fulltext-match-in-mysql Ian Carroll: Column.match() implements the MATCH...AGAINST query on a MySQL FullText index incorrectly, in that it expects a Boolean value (but only in some uses). The attached, annotated codelet generates two errors (protected by try...except statements). The first one is only loosely related. The second one is the ValueError raised when returning results from a query with Column.match(). SQLAlchemy (0.9.8) MySQL (5.6.22) mysql-connector-python (2.0.2) |