diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2006-10-03 16:47:14 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2006-10-03 16:47:14 +0000 |
| commit | beff0e1e132e8005611ed4d3f07955252a7e8d72 (patch) | |
| tree | 7f1bef609120ec563d75b6f60e6c8216c8be1e4f /lib/sqlalchemy/ext | |
| parent | 7a2194e6c0c392ea50fb8b325acb27f8a98428f9 (diff) | |
| download | sqlalchemy-beff0e1e132e8005611ed4d3f07955252a7e8d72.tar.gz | |
- merged loader_strategies branch into trunk.
- this is a wide refactoring to "attribute loader" and "options" architectures.
ColumnProperty and PropertyLoader define their loading behaivor via switchable
"strategies", and MapperOptions no longer use mapper/property copying
in order to function; they are instead propigated via QueryContext
and SelectionContext objects at query/instnaces time.
All of the copying of mappers and properties that was used to handle
inheritance as well as options() has been removed and the structure
of mappers and properties is much simpler and more clearly laid out.
Diffstat (limited to 'lib/sqlalchemy/ext')
| -rw-r--r-- | lib/sqlalchemy/ext/selectresults.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/ext/selectresults.py b/lib/sqlalchemy/ext/selectresults.py index 93698a5e0..c2ad40917 100644 --- a/lib/sqlalchemy/ext/selectresults.py +++ b/lib/sqlalchemy/ext/selectresults.py @@ -99,7 +99,7 @@ class SelectResults(object): new = self.clone() new._ops['from_obj'] = from_obj return new - + def join_to(self, prop): """join the table of this SelectResults to the table located against the given property name. |
