diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2008-04-07 01:12:44 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2008-04-07 01:12:44 +0000 |
commit | e3b2305d6721a1f1ed20f9c520765f7c33876f32 (patch) | |
tree | 8fa4a5565f42dc836a22c44219762dee4b933fd7 /lib/sqlalchemy/util.py | |
parent | 5b3cddc48e5b436a0c46f0df3b016a837d823c92 (diff) | |
download | sqlalchemy-e3b2305d6721a1f1ed20f9c520765f7c33876f32.tar.gz |
- merged -r4458:4466 of query_columns branch
- this branch changes query.values() to immediately return an iterator, adds a new "aliased" construct which will be the primary method to get at aliased columns when using values()
- tentative ORM versions of _join and _outerjoin are not yet public, would like to integrate with Query better (work continues in the branch)
- lots of fixes to expressions regarding cloning and correlation. Some apparent ORM bug-workarounds removed.
- to fix a recursion issue with anonymous identifiers, bind parameters generated against columns now just use the name of the column instead of the tablename_columnname label (plus the unique integer counter). this way expensive recursive schemes aren't needed for the anon identifier logic. This, as usual, impacted a ton of compiler unit tests which needed a search-n-replace for the new bind names.
Diffstat (limited to 'lib/sqlalchemy/util.py')
-rw-r--r-- | lib/sqlalchemy/util.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/sqlalchemy/util.py b/lib/sqlalchemy/util.py index 740e97e3f..bc02b879e 100644 --- a/lib/sqlalchemy/util.py +++ b/lib/sqlalchemy/util.py @@ -951,7 +951,6 @@ class OrderedIdentitySet(IdentitySet): for o in iterable: self.add(o) - class UniqueAppender(object): """Only adds items to a collection once. |