up ORM decision making [ticket:593]
- added Interval type to types.py [ticket:595]
- mysql
+ - fixed catching of some errors that imply a dropped connection [ticket:625]
- fixed escaping of the modulo operator [ticket:624]
- added 'fields' to reserved words [ticket:590]
- oracle
pass
def is_disconnect(self, e):
- return isinstance(e, self.dbapi.OperationalError) and e.args[0] in (2006, 2014)
+ return isinstance(e, self.dbapi.OperationalError) and e.args[0] in (2006, 2013, 2014, 2045, 2055)
def get_default_schema_name(self):
if not hasattr(self, '_default_schema_name'):