diff options
author | Lele Gaifax <lele@metapensiero.it> | 2018-06-15 18:06:10 +0200 |
---|---|---|
committer | Lele Gaifax <lele@metapensiero.it> | 2018-06-15 18:06:10 +0200 |
commit | cca5482221c0e94955a3d30162e0fe942adf5424 (patch) | |
tree | d01352ae06b2afaad22ae0d7f9028e21ce322bd8 /lib/sqlalchemy/dialects/postgresql/base.py | |
parent | 8581059c3a7a8a2bdce16f3637d27ec14dad03d8 (diff) | |
download | sqlalchemy-cca5482221c0e94955a3d30162e0fe942adf5424.tar.gz |
Fix typo
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/base.py')
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py index e3cbbb2af..60fc55e63 100644 --- a/lib/sqlalchemy/dialects/postgresql/base.py +++ b/lib/sqlalchemy/dialects/postgresql/base.py @@ -126,7 +126,7 @@ Remote-Schema Table Introspection and PostgreSQL search_path ------------------------------------------------------------ **TL;DR;**: keep the ``search_path`` variable set to its default of ``public``, -name schemas **other** than ``public`` explicitly within ``Table`` defintitions. +name schemas **other** than ``public`` explicitly within ``Table`` definitions. The PostgreSQL dialect can reflect tables from any schema. The :paramref:`.Table.schema` argument, or alternatively the |