From 01354d8fa93db87dd684f542d3a68d5ce50c127c Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 19 Mar 2024 10:51:01 -0400 Subject: [PATCH] work around boldface concerns Change-Id: I99ed117bb0f1bdc1a8750bd13db5a69d5c398ae0 (cherry picked from commit 697dcc94e412e013aba298e17613ee097f423e04) --- lib/sqlalchemy/dialects/postgresql/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py index c36597bbc4..652a695670 100644 --- a/lib/sqlalchemy/dialects/postgresql/base.py +++ b/lib/sqlalchemy/dialects/postgresql/base.py @@ -402,8 +402,8 @@ default schema, if one exists. Otherwise, ``public`` is used. When a :class:`_schema.Table` object is reflected, if it is present in the schema indicated by the ``current_schema()`` function, **the schema name assigned -to the table is the Python value ``None``**. Otherwise, the schema name -will be assigned as the name of that schema. +to the ".schema" attribute of the Table is the Python "None" value**. Otherwise, the +".schema" attribute will be assigned the string name of that schema. With regards to tables which these :class:`_schema.Table` objects refer to via foreign key constraint, a decision must be made as to how -- 2.47.2