which potentially allows pygresql to work as an alternate
DBAPI (but this is *not supported!!!*) [ticket:1691]
- Fix reflection of default values with spurious spaces
(backport of r6257 and r6699). [ticket:1582 and ticket:1663]
+- postgresql
+ - Removed "None" from a connection.execute() in the dialect
+ which potentially allows pygresql to work as an alternate
+ DBAPI (but this is *not supported!!!*) [ticket:1691]
+
0.5.8
=====
- sql
return [row[0] for row in resultset]
def get_default_schema_name(self, connection):
- return connection.scalar("select current_schema()", None)
+ return connection.scalar("select current_schema()")
get_default_schema_name = base.connection_memoize(
('dialect', 'default_schema_name'))(get_default_schema_name)