- the "delete" cascade will load in all child objects, if they were not
loaded already. this can be turned off (i.e. the old behavior) by setting
passive_deletes=True on a relation().
+- MySQL catches exception on "describe" and reports as NoSuchTableError
0.3.0
- General:
if not case_sensitive:
table.name = table.name.lower()
table.metadata.tables[table.name]= table
- c = connection.execute("describe " + table.name, {})
+ try:
+ c = connection.execute("describe " + table.name, {})
+ except:
+ raise exceptions.NoSuchTableError(table.name)
found_table = False
while True:
row = c.fetchone()