From 4fe170332201ac02d303ec6c404ffa8b5beddbb5 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 23 Oct 2012 14:22:56 -0400 Subject: [PATCH] tweaks --- doc/build/changelog/changelog_08.rst | 2 +- lib/sqlalchemy/engine/base.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/build/changelog/changelog_08.rst b/doc/build/changelog/changelog_08.rst index d5ac10f103..c741cdda99 100644 --- a/doc/build/changelog/changelog_08.rst +++ b/doc/build/changelog/changelog_08.rst @@ -13,7 +13,7 @@ Added a new method :meth:`.Engine.execution_options` to :class:`.Engine`. This method works similarly to - :class:`.Connection.execution_options` in that it creates + :meth:`.Connection.execution_options` in that it creates a copy of the parent object which will refer to the new set of options. The method can be used to build sharding schemes where each engine shares the same diff --git a/lib/sqlalchemy/engine/base.py b/lib/sqlalchemy/engine/base.py index bdb1a0004e..eddd446b20 100644 --- a/lib/sqlalchemy/engine/base.py +++ b/lib/sqlalchemy/engine/base.py @@ -1396,7 +1396,7 @@ class Engine(Connectable, log.Identified): current_shard = conn.info.get("current_shard", None) if current_shard != shard_id: - cursor.execute("use %%s" %% shards[shard_id]) + cursor.execute("use %s" % shards[shard_id]) conn.info["current_shard"] = shard_id .. seealso:: -- 2.47.3