From: Michael J Ward Date: Tue, 23 Apr 2019 20:44:06 +0000 (-0500) Subject: Fixes typo in core/connections.rst X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ba8615f43e95f3496650d9313ed043cbfffc5b1f;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fixes typo in core/connections.rst The generated sql was using the incorrect `user_schema` instead of the correct `user_schema_one` translated table name. (cherry picked from commit 9bba68a5a70d9e58bbc7490f7313c3b9dc2bb9ba) --- diff --git a/doc/build/core/connections.rst b/doc/build/core/connections.rst index aacb537f5d..b9b44b011a 100644 --- a/doc/build/core/connections.rst +++ b/doc/build/core/connections.rst @@ -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::