Corrected a reference to alt_schema_2 and fixed a docstring indentation for Table.

This commit is contained in:
Michael Trier 2008-07-03 03:10:46 +00:00
parent f3a9acc7e2
commit 4af4968926
2 changed files with 9 additions and 9 deletions

View File

@ -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

View File

@ -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.