mirror of
https://github.com/PyMySQL/mysqlclient.git
synced 2025-08-15 19:31:54 +08:00
Version 1.2.2b1.
Raise IntegrityError for a couple types of relatively new errors. (Bug 1327679) Add BIT column support. (Bug 1468725) Return BINARY columns as normal strings, not arrays. (Bug 1495765) Add support for a new VARCHAR type; behaves like other CHAR types. Defer issuing warnings when using SSCursors. (Bug 1495782) Do not try to encode query strings unless they are unicode instances. (Bug 1521274) Fix problem with callproc() when it is used before execute() (which is legal). (Bug 1541124) Fix formatting of datetime.timedelta values. (Bug 1527801) Fix connect_timeout documentation bug. (Bug 1523883)
This commit is contained in:
@ -170,9 +170,15 @@ _mysql_Exception(_mysql_ConnectionObject *c)
|
||||
#ifdef ER_NO_REFERENCED_ROW
|
||||
case ER_NO_REFERENCED_ROW:
|
||||
#endif
|
||||
#ifdef ER_NO_REFERENCED_ROW_2
|
||||
case ER_NO_REFERENCED_ROW_2:
|
||||
#endif
|
||||
#ifdef ER_ROW_IS_REFERENCED
|
||||
case ER_ROW_IS_REFERENCED:
|
||||
#endif
|
||||
#ifdef ER_ROW_IS_REFERENCED_2
|
||||
case ER_ROW_IS_REFERENCED_2:
|
||||
#endif
|
||||
#ifdef ER_CANNOT_ADD_FOREIGN
|
||||
case ER_CANNOT_ADD_FOREIGN:
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user