diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2009-05-17 22:58:21 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2009-05-17 22:58:21 +0000 |
commit | d7e531ce9f0def1f08d78b3a7a7d6f268c5eb0bb (patch) | |
tree | 4c5484051bc323bf20a3ad6b1b9a87bbed478d36 /test/ext/alltests.py | |
parent | d1d3c1ad930e5bbccb081f69be570479c3512ef3 (diff) | |
download | sqlalchemy-d7e531ce9f0def1f08d78b3a7a7d6f268c5eb0bb.tar.gz |
- Back-ported the "compiler" extension from SQLA 0.6. Thisrel_0_5_4
is a standardized interface which allows the creation of custom
ClauseElement subclasses and compilers. In particular it's
handy as an alternative to text() when you'd like to
build a construct that has database-specific compilations.
See the extension docs for details.
Diffstat (limited to 'test/ext/alltests.py')
-rw-r--r-- | test/ext/alltests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/ext/alltests.py b/test/ext/alltests.py index 3f0360e85..9f5353e04 100644 --- a/test/ext/alltests.py +++ b/test/ext/alltests.py @@ -10,6 +10,7 @@ def suite(): 'ext.orderinglist', 'ext.associationproxy', 'ext.serializer', + 'ext.compiler', ) if sys.version_info < (2, 4): |