summaryrefslogtreecommitdiff
path: root/lib
Commit message (Expand)AuthorAgeFilesLines
* - added "schema" argument to all has_table() calls, only supported so far by PGMike Bayer2007-02-048-12/+12
* alternate OrderedSet implementation courtesy sdobrevMike Bayer2007-02-041-7/+76
* added 'ascii' as default encoding in case getdefaultlocale()[1] comes up with...Mike Bayer2007-02-041-1/+1
* polymorphic union uses the literal_column function for its "textual" columnMike Bayer2007-02-041-1/+1
* - added literal_column() to specify a column clause that should not undergo a...Mike Bayer2007-02-044-13/+16
* OK nevermind that last commit, rolling the quoting fix backMike Bayer2007-02-042-15/+16
* - more quoting fixes for [ticket:450]...quoting more aggressive (but still sk...Mike Bayer2007-02-045-28/+29
* - sequences on a non-pk column will properly fire off on INSERT for PG/oracleMike Bayer2007-02-022-4/+11
* - added a "supports_execution()" method to ClauseElement, so that individualMike Bayer2007-02-022-3/+17
* removed extra _find_cycles callMike Bayer2007-02-021-1/+0
* - clear_mappers() just blows away all of ArgSingleton for nowMike Bayer2007-02-012-3/+4
* - the "polymorphic_primaryjoin" again goes against the parent's non-polymorph...Mike Bayer2007-02-014-20/+30
* - improved support for complex queries embedded into "where" criterionMike Bayer2007-02-016-54/+78
* - fix to deferred so that load operation doesnt mistakenly occur when onlyMike Bayer2007-01-301-0/+4
* further work on insuring clear_mappers() really works. assignmapper identifiedMike Bayer2007-01-304-3/+16
* - fixed bug where cascade operations incorrectly included deleted collectionMike Bayer2007-01-301-4/+1
* reset managed attributes on mapped classes when clear_mappers calledMike Bayer2007-01-291-1/+3
* empty out ClassKey registry when clear_mappers() is calledMike Bayer2007-01-291-0/+1
* fixes to quoting on "fake" column when used off its tableMike Bayer2007-01-291-1/+1
* removed various print statementsMike Bayer2007-01-283-9/+1
* added regexp search for "schema" in sequence reflection for [ticket:442], cou...Mike Bayer2007-01-281-0/+6
* merged the polymorphic relationship refactoring branch in. i want to go furt...Mike Bayer2007-01-288-81/+216
* - fix for multi-level polymorphic mappersMike Bayer2007-01-271-3/+3
* - eager relation to an inheriting mapper wont fail if no rows returned forMike Bayer2007-01-271-4/+5
* removed print lineMike Bayer2007-01-261-1/+0
* r/m unused importJonathan Ellis2007-01-251-1/+1
* - fix to reflection on older DB's that might return array() type forMike Bayer2007-01-251-1/+6
* - calling corresponding_column with keys_ok matches columns on name, not key,...Mike Bayer2007-01-243-7/+10
* raise exception if invalid collection class usedMike Bayer2007-01-241-1/+3
* oracle can conditionally decide if it wants to say "use rowid" in a select st...Mike Bayer2007-01-246-8/+16
* - *slight* support for binary, but still need to figure out how to insert rea...rel_0_3_4Mike Bayer2007-01-231-5/+9
* attempting to get oracle binary workingMike Bayer2007-01-231-0/+7
* - added support for column "key" attribute to be useable in row[<key>]/row.<key>Mike Bayer2007-01-232-5/+21
* justify textJonathan Ellis2007-01-231-8/+9
* add example of joining to labeled tableJonathan Ellis2007-01-231-1/+10
* split out SelectableClassType from TableClassType, so we don't have to do an ...Jonathan Ellis2007-01-231-17/+37
* relationships no longer compile against the "selectable" mapper (i.e. the pol...Mike Bayer2007-01-233-17/+100
* added "instances" to assign_mapper funcs [ticket:433]Mike Bayer2007-01-231-2/+2
* oops, change from yesterday fails the zblog tests...now i understand !Mike Bayer2007-01-211-1/+6
* better error message from [ticket:429]Mike Bayer2007-01-211-3/+4
* added recursion check to mergeMike Bayer2007-01-212-17/+25
* docs: [ticket:345], [ticket:356], [ticket:48], [ticket:403], [ticket:394],Mike Bayer2007-01-211-2/+2
* - mysql table create options work on a generic passthru now, i.e. Table(..., ...Mike Bayer2007-01-201-5/+6
* - added "validate=False" argument to assign_mapper, if True will insure that ...Mike Bayer2007-01-201-1/+5
* starting to refactor adaptation of inherited properties out of the MapperProp...Mike Bayer2007-01-202-10/+9
* - tightened down conditions used to locate "relation direction", associatingMike Bayer2007-01-204-5/+15
* - fix to "proxy=True" behavior on synonym()Mike Bayer2007-01-201-1/+0
* - trailing underscores are trimmed from func.<xxx> calls, such as func.if_()Mike Bayer2007-01-191-0/+2
* - changed "BooleanExpression" to subclass from "BinaryExpression", so that bo...Mike Bayer2007-01-192-14/+11
* - fixed bug where delete-orphan basically didn't work with many-to-many relat...Mike Bayer2007-01-191-1/+10