]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fixes typo in core/connections.rst
authorMichael J Ward <ward.michael.j@gmail.com>
Tue, 23 Apr 2019 20:44:06 +0000 (15:44 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 13 May 2019 22:39:09 +0000 (18:39 -0400)
The generated sql was using the incorrect `user_schema` instead
of the correct `user_schema_one` translated table name.

(cherry picked from commit 9bba68a5a70d9e58bbc7490f7313c3b9dc2bb9ba)

doc/build/core/connections.rst

index aacb537f5db7c551e16fc4c82f0cc11f87197733..b9b44b011ad42368a0705e109a47defc8254d561 100644 (file)
@@ -401,7 +401,7 @@ render the schema as ``user_schema_one``::
 The above code will invoke SQL on the database of the form::
 
     SELECT user_schema_one.user.id, user_schema_one.user.name FROM
-    user_schema.user
+    user_schema_one.user
 
 That is, the schema name is substituted with our translated name.  The
 map can specify any number of target->destination schemas::