diff options
| author | Michael Trier <mtrier@gmail.com> | 2008-07-03 03:10:46 +0000 |
|---|---|---|
| committer | Michael Trier <mtrier@gmail.com> | 2008-07-03 03:10:46 +0000 |
| commit | 4af496892685b95c5bb761e1c585c3f122a658cb (patch) | |
| tree | b0280a8b9de0c5431466e4974e3a9a9a29362a0c /lib/sqlalchemy | |
| parent | f3a9acc7e2b572a3546b7341b695afd0134b9fc0 (diff) | |
| download | sqlalchemy-4af496892685b95c5bb761e1c585c3f122a658cb.tar.gz | |
Corrected a reference to alt_schema_2 and fixed a docstring indentation for Table.
Diffstat (limited to 'lib/sqlalchemy')
| -rw-r--r-- | lib/sqlalchemy/schema.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/sqlalchemy/schema.py b/lib/sqlalchemy/schema.py index 8e3c07233..e1e5e079c 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. |
