summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-08-16 10:03:05 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2013-08-16 10:03:05 -0400
commit869620902a5a9a0cfc8e9021e3aa31178f18152c (patch)
tree04be11ec49ab24c9e58e52328a17efe2b3c72dc8
parent59141d360e70d1a762719206e3cb0220b4c53fef (diff)
downloadsqlalchemy-869620902a5a9a0cfc8e9021e3aa31178f18152c.tar.gz
merge error here, though also hedge between explaining about the expressions here vs.
hoping they read the class-level docstring
-rw-r--r--lib/sqlalchemy/sql/schema.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/sqlalchemy/sql/schema.py b/lib/sqlalchemy/sql/schema.py
index ccab31991..ce4182c54 100644
--- a/lib/sqlalchemy/sql/schema.py
+++ b/lib/sqlalchemy/sql/schema.py
@@ -2509,19 +2509,12 @@ class Index(ColumnCollectionMixin, SchemaItem):
:param name:
The name of the index
-<<<<<<< HEAD
:param \*expressions:
Column expressions to include in the index. The expressions
are normally instances of :class:`.Column`, but may also
be arbitrary SQL expressions which ultmately refer to a
:class:`.Column`.
- .. versionadded:: 0.8 :class:`.Index` supports SQL expressions as
- well as plain columns.
-=======
- :param \*expressions: Column or SQL expressions.
->>>>>>> master
-
:param unique:
Defaults to False: create a unique index.