diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2016-11-10 15:30:04 -0500 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@awstats.zzzcomputing.com> | 2016-11-10 15:30:04 -0500 |
| commit | 33e277e856fe9ab5d959fc226cf3fc5483891e15 (patch) | |
| tree | 8a2300681746b019ea8ff4859e01e8c8fe37b181 | |
| parent | d1e31ab1582e2d9275c70a89b72efc2a8651df3f (diff) | |
| parent | ea934b95396d4796ceee8ae949a964a4d3005211 (diff) | |
| download | sqlalchemy-33e277e856fe9ab5d959fc226cf3fc5483891e15.tar.gz | |
Merge "Remove non-working Connection.default_schema_name() method"
| -rw-r--r-- | doc/build/changelog/changelog_11.rst | 8 | ||||
| -rw-r--r-- | lib/sqlalchemy/engine/base.py | 3 |
2 files changed, 8 insertions, 3 deletions
diff --git a/doc/build/changelog/changelog_11.rst b/doc/build/changelog/changelog_11.rst index a25520ba3..57017b4d3 100644 --- a/doc/build/changelog/changelog_11.rst +++ b/doc/build/changelog/changelog_11.rst @@ -22,6 +22,14 @@ :version: 1.1.4 .. change:: + :tags: bug, engine + + Removed long-broken "default_schema_name()" method from + :class:`.Connection`. This method was left over from a very old + version and was non-working (e.g. would raise). Pull request + courtesy Benjamin Dopplinger. + + .. change:: :tags: bug, sqlite Added quotes to the PRAGMA directives in the pysqlcipher dialect diff --git a/lib/sqlalchemy/engine/base.py b/lib/sqlalchemy/engine/base.py index f071abaa1..e187fa660 100644 --- a/lib/sqlalchemy/engine/base.py +++ b/lib/sqlalchemy/engine/base.py @@ -1458,9 +1458,6 @@ class Connection(Connectable): else: util.reraise(*exc_info) - def default_schema_name(self): - return self.engine.dialect.get_default_schema_name(self) - def transaction(self, callable_, *args, **kwargs): """Execute the given function within a transaction boundary. |
