- Fixed bug in exception raise when FK columns not present
during reflection. [ticket:1241]
- sql
- Connection.invalidate() checks for closed status
to avoid attribute errors. [ticket:1246]
-
+
+- mysql
+ - Fixed bug in exception raise when FK columns not present
+ during reflection. [ticket:1241]
+
0.4.8
=====
- orm
raise exceptions.InvalidRequestError(
"Foreign key columns (%s) are not present on "
"foreign table %s" %
- (', '.join(ref_names), ref_table.fullname()))
+ (', '.join(ref_names), ref_table.fullname))
ref_columns = [ref_table.c[name] for name in ref_names]
con_kw = {}