passive_deletes=True on a relation().
- MySQL catches exception on "describe" and reports as NoSuchTableError
- further fixes to sqlite booleans, weren't working as defaults
+- fix to postgres sequence quoting when using schemas
0.3.0
- General:
# TODO: this has to build into the Sequence object so we can get the quoting
# logic from it
if sch is not None:
- exc = "select nextval('\"%s.%s_%s_seq\"')" % (sch, column.table.name, column.name)
+ exc = "select nextval('\"%s\".\"%s_%s_seq\"')" % (sch, column.table.name, column.name)
else:
exc = "select nextval('\"%s_%s_seq\"')" % (column.table.name, column.name)
c = self.proxy(exc)