]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Corrected a reference to alt_schema_2 and fixed a docstring indentation for Table.
authorMichael Trier <mtrier@gmail.com>
Thu, 3 Jul 2008 03:10:46 +0000 (03:10 +0000)
committerMichael Trier <mtrier@gmail.com>
Thu, 3 Jul 2008 03:10:46 +0000 (03:10 +0000)
README.unittests
lib/sqlalchemy/schema.py

index 37f47727024e9f21267bb1a11283e803b60d4725..747a1bf0f0eeb68868aaa7b33cce162151b0088e 100644 (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
index 8e3c072338e8990d4218d95e77c98618aea5c207..e1e5e079ce8981424a0d609df5c5d6d2c99d2c2e 100644 (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.