From: Michael Trier Date: Thu, 3 Jul 2008 03:10:46 +0000 (+0000) Subject: Corrected a reference to alt_schema_2 and fixed a docstring indentation for Table. X-Git-Tag: rel_0_5beta2~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4af496892685b95c5bb761e1c585c3f122a658cb;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Corrected a reference to alt_schema_2 and fixed a docstring indentation for Table. --- 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.