Edited TODO via GitHub
[dbsrgits/DBIx-Class-Historic.git] / TODO
1 TEST
2
3
4 2005-04-16 by mst
5   - set_from_related should take undef
6   - ResultSource objects caching ->resultset causes interesting problems
7   - find why XSUB dumper kills schema in Catalyst (may be Pg only?)
8
9 2006-03-25 by mst
10   - find a way to un-wantarray search without breaking compat
11   - delay relationship setup if done via ->load_classes
12   - double-sided relationships
13   - make short form of class specifier in relationships work
14
15 2006-03-18 by bluefeet
16  - Support table locking.
17
18 2006-03-21 by bluefeet
19  - When subclassing a dbic class make it so you don't have to do 
20    __PACKAGE__->table(__PACKAGE__->table()); for the result set to 
21    return the correct object type.
22
23 2006-05-25 by mst (TODOed by bluefeet)
24  Add the search attributes "limit" and "rows_per_page".
25  limit: work as expected just like offset does
26  rows_per_page: only be used if you used the page attr or called $rs->page
27  rows: modify to be an alias that gets used to populate either as appropriate, 
28        if you haven't specified one of the others
29
30 2008-10-30 by ribasushi
31   - Rewrite the test suite to rely on $schema->deploy, allowing for seamless
32     testing of various RDBMS using the same tests
33   - Automatically infer quote_char/name_sep from $schema->storage
34   - Recursive update() (all code seems to be already available)