]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fixes typo in core/connections.rst 4626/head
authorMichael J Ward <ward.michael.j@gmail.com>
Tue, 23 Apr 2019 20:44:06 +0000 (15:44 -0500)
committerMichael J Ward <ward.michael.j@gmail.com>
Tue, 23 Apr 2019 20:44:06 +0000 (15:44 -0500)
The generated sql was using the incorrect `user_schema` instead
of the correct `user_schema_one` translated table name.

doc/build/core/connections.rst

index 4612da7cd882d207377dd0145c5df7b8f820f88e..de1bb09100cd999a686246dc701b252f8a26bda2 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::