[Sqlalchemy-tickets] Issue #3966: ancient mysql utc_timestamp rule seems unnecessary (zzzeek/sqlalc
Brought to you by:
zzzeek
From: Michael B. <iss...@bi...> - 2017-04-13 13:51:37
|
New issue 3966: ancient mysql utc_timestamp rule seems unnecessary https://bitbucket.org/zzzeek/sqlalchemy/issues/3966/ancient-mysql-utc_timestamp-rule-seems Michael Bayer: from https://github.com/zzzeek/sqlalchemy/pull/355 ``` #! commit a21dc3d Author: Mike Bayer mi...@zz... Date: Wed Sep 10 21:09:04 2008 +0000 - the function func.utc_timestamp() compiles to UTC_TIMESTAMP, without the parenthesis, which seem to get in the way when using in conjunction with executemany(). ``` we have a hardcoded UTC_TIMESTAMP render that seems unnecessary and gets in the way of parameters like fsp. the ancient assertion that this "gets in the way with executemany()" must be tested. It would only be some ancient mysqldb driver issue at best. |