From 4af496892685b95c5bb761e1c585c3f122a658cb Mon Sep 17 00:00:00 2001 From: Michael Trier Date: Thu, 3 Jul 2008 03:10:46 +0000 Subject: [PATCH] Corrected a reference to alt_schema_2 and fixed a docstring indentation for Table. --- README.unittests | 2 +- lib/sqlalchemy/schema.py | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.unittests b/README.unittests index 37f4772702..747a1bf0f0 100644 --- a/README.unittests +++ b/README.unittests @@ -187,7 +187,7 @@ the source code transformed into 2.3-friendly syntax. TIPS ---- -Postgres: The tests require an 'alt_schema' and 'alt_schema2' to be present in +Postgres: The tests require an 'alt_schema' and 'alt_schema_2' to be present in the testing database. Postgres: When running the tests on postgres, postgres can get slower and diff --git a/lib/sqlalchemy/schema.py b/lib/sqlalchemy/schema.py index 8e3c072338..e1e5e079ce 100644 --- a/lib/sqlalchemy/schema.py +++ b/lib/sqlalchemy/schema.py @@ -185,14 +185,14 @@ class Table(SchemaItem, expression.TableClause): Deprecated; this is an oracle-only argument - "schema" should be used in its place. - quote - Force quoting of the identifier on or off, based on `True` or - `False`. Defaults to `None`. This flag is rarely needed, - as quoting is normally applied - automatically for known reserved words, as well as for - "case sensitive" identifiers. An identifier is "case sensitive" - if it contains non-lowercase letters, otherwise it's - considered to be "case insensitive". + quote + Force quoting of the identifier on or off, based on `True` or + `False`. Defaults to `None`. This flag is rarely needed, + as quoting is normally applied + automatically for known reserved words, as well as for + "case sensitive" identifiers. An identifier is "case sensitive" + if it contains non-lowercase letters, otherwise it's + considered to be "case insensitive". quote_schema same as 'quote' but applies to the schema identifier. -- 2.47.3