diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-03-10 14:18:35 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-03-10 14:18:35 -0400 |
commit | 6ac0555eaa6363ac9d0ad6566248dd294ad61d9e (patch) | |
tree | 4a54440ed768c5b848f29d7efa7fe2020fbc9a23 | |
parent | ddf35e2f04c592256762d5f79ee9e13e4d0b5818 (diff) | |
download | sqlalchemy-6ac0555eaa6363ac9d0ad6566248dd294ad61d9e.tar.gz |
- changelog / doc for sqlite partial indexes
-rw-r--r-- | doc/build/changelog/changelog_09.rst | 11 | ||||
-rw-r--r-- | lib/sqlalchemy/dialects/sqlite/base.py | 20 |
2 files changed, 31 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_09.rst b/doc/build/changelog/changelog_09.rst index c7bd272f2..1f583c44a 100644 --- a/doc/build/changelog/changelog_09.rst +++ b/doc/build/changelog/changelog_09.rst @@ -15,6 +15,17 @@ :version: 0.9.9 .. change:: + :tags: feature, sqlite + :pullreq: bitbucket:42 + + Added support for partial indexes (e.g. with a WHERE clause) on + SQLite. Pull request courtesy Kai Groner. + + .. seealso:: + + :ref:`sqlite_partial_index` + + .. change:: :tags: bug, orm :tickets: 3310 diff --git a/lib/sqlalchemy/dialects/sqlite/base.py b/lib/sqlalchemy/dialects/sqlite/base.py index 437a7794a..462a9f21f 100644 --- a/lib/sqlalchemy/dialects/sqlite/base.py +++ b/lib/sqlalchemy/dialects/sqlite/base.py @@ -272,6 +272,26 @@ lookup is used instead: .. versionadded:: 0.9.3 Support for SQLite type affinity rules when reflecting columns. + +.. _sqlite_partial_index: + +Partial Indexes +=============== + +A partial index, e.g. one which uses a WHERE clause, can be specified +with the DDL system using the argument ``sqlite_where``:: + + tbl = Table('testtbl', m, Column('data', Integer)) + idx = Index('test_idx1', tbl.c.data, + sqlite_where=and_(tbl.c.data > 5, tbl.c.data < 10)) + +The index will be rendered at create time as:: + + CREATE INDEX test_idx1 ON testtbl (data) + WHERE data > 5 AND data < 10 + +.. versionadded:: 0.9.9 + """ import datetime |