Skip Menu |

This queue is for tickets about the Class-DBI-Plugin-DeepAbstractSearch CPAN distribution.

Report information
The Basics
Id: 36692
Status: new
Priority: 0/
Queue: Class-DBI-Plugin-DeepAbstractSearch

People
Owner: Nobody in particular
Requestors: teidam [...] idleminds.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.08
Fixed in: (no value)



Subject: documentation/code mismatch
The documentation for the module uses sort_by in multiple examples: ## Tracks on all CDs with the title "Greatest Hits" @tracks = Music::Track->deep_search_where( { ’cd.title’ => "Greatest Hits" }, { sort_by => ’cd.title’ } ); However the code itself uses order_by, not sort_by: 49: my $order = ($attr) ? delete($attr->{order_by}) : undef;