summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/mapping/properties.py
Commit message (Expand)AuthorAgeFilesLines
* merged 0.2 branch into trunk; 0.1 now in sqlalchemy/branches/rel_0_1Mike Bayer2006-05-251-980/+0
* commented out default schema name checkMike Bayer2006-04-261-1/+1
* removed a "swap" from the lazy binary clause. added a test for that condition...Mike Bayer2006-04-241-2/+2
* lazyload clause calculation uses anonymous keynames for the bind parameters, ...Mike Bayer2006-04-241-5/+17
* got circular many-to-many relationships to workMike Bayer2006-04-191-8/+6
* mapper's querying facilities migrated to new query.Query() object, which can ...Mike Bayer2006-04-061-3/+3
* added explicit "session" argument to get(), select_whereclause in mapper, as ...Mike Bayer2006-04-061-12/+13
* added 'entity_name' keyword argument to mapper. a mapper is now associated w...Mike Bayer2006-04-031-0/+2
* added unit test for the old commit that was in [changeset:1186]. modified it...Mike Bayer2006-03-311-8/+8
* introducing...the mods package ! the SelectResults thing moves as the first modMike Bayer2006-03-311-4/+1
* Jonas Borgström's fantastic SelectRsults patch that adds dynamic list argume...Mike Bayer2006-03-311-1/+1
* backrefs on cyclical relationships were breaking for the "root" node which ha...Mike Bayer2006-03-271-0/+3
* removed circular loop in creating new list elements, fixes a common refresh()...Mike Bayer2006-03-251-0/+4
* removed all "tablename + '_' + columname" code and replaced with column._labe...Mike Bayer2006-03-251-3/+3
* some more tweaks to get more advanced polymorphic stuff to workMike Bayer2006-03-241-0/+3
* added some extra traversal for one-to-many/many-to-one "private" relations to...Mike Bayer2006-03-221-9/+21
* removed printMike Bayer2006-03-221-1/+0
* fixed lazy clause construction to go off...you guessed it...the noninherited ...Mike Bayer2006-03-211-1/+2
* a few changes to attributes.py to allow faster initialization of object attri...Mike Bayer2006-03-211-2/+4
* a refactoring to the EagerLoaders' _instance method to do a bunch of column a...Mike Bayer2006-03-211-6/+18
* a few tweaks and the polymorph example can also use eager loadingMike Bayer2006-03-201-0/+8
* PropertyLoader will not re-determine direction when initialized a second time...Mike Bayer2006-03-181-1/+5
* identified more issues with inheritance. mapper inheritance is more closed-m...Mike Bayer2006-03-171-4/+3
* tweak to get_direction, rolls back a comparison of "foreigntable" to "parent"...Mike Bayer2006-03-131-2/+4
* added 'noninherited table' prop to mapper indicating the "lead" table, in the...Mike Bayer2006-03-091-8/+3
* added check to relation that will see if the same table is included between t...Mike Bayer2006-03-081-0/+5
* serious overhaul to get eager loads to work inline with an inheriting mapper,...Mike Bayer2006-03-081-6/+14
* commentMike Bayer2006-03-071-3/+5
* backref() func will also honor lazy=True/FalseMike Bayer2006-03-071-1/+6
* added backref() function, allows the creation of a backref where you also sen...Mike Bayer2006-03-071-18/+33
* fixed bug in eager loading on a many-to-one [ticket:96], added the ticket tes...Mike Bayer2006-03-061-0/+5
* added new 'polymorphic' example. still trying to understand it :) .Mike Bayer2006-03-061-3/+4
* more work on cycles, fleshed out tests for post_update, fix to the delete pha...Mike Bayer2006-02-271-1/+1
* implemented SyncRules for mapper with inheritance relationship, fixes [ticket...Mike Bayer2006-02-261-1/+3
* factored out "syncrule" logic to a separate package, so mapper will be able t...Mike Bayer2006-02-261-109/+18
* adjustment to compile synchronizers which allows many-to-many synchronize to ...Mike Bayer2006-02-261-2/+7
* more fix to one-to-one: 'unchanged_items' can be [None] also with one to one ...Mike Bayer2006-02-221-2/+3
* fix to EagerLoad where it late-initializes its eager chain, thereby not getti...Mike Bayer2006-02-221-7/+18
* when creating lazy clause both sides of each clause must be ColumnMike Bayer2006-02-211-2/+2
* working on postupdate idea, refactoring to dependency processingMike Bayer2006-02-211-22/+23
* merged eager loading overhaul rev 1001:1009Mike Bayer2006-02-201-130/+87
* some comments, changed SmartProperty to be smarter, UOWMike Bayer2006-02-191-0/+4
* exception package added, support throughoutMike Bayer2006-02-191-14/+15
* Join object wasnt exporting foreign keys correctlyMike Bayer2006-02-161-8/+24
* commentrel_0_1_0Mike Bayer2006-02-141-2/+4
* the list-based foreign key doenst seem to work quite right, rolling it backMike Bayer2006-02-141-15/+10
* lazy load column fix courtesy raul garcia garciaMike Bayer2006-02-141-1/+1
* added 'post_update' attribute to PropertyLoader, means to defer processing of...Mike Bayer2006-02-131-8/+24
* some tweaks to options, use_alias, live removedMike Bayer2006-02-121-3/+2
* cleanup and organization of code mostly in properties, making SyncRules clearer,Mike Bayer2006-02-121-120/+161