~ubuntu-branches/ubuntu/intrepid/libdbix-searchbuilder-perl/intrepid

« back to all changes in this revision

Viewing changes to SearchBuilder/Union.pm

  • Committer: Bazaar Package Importer
  • Author(s): Niko Tyni
  • Date: 2007-05-22 22:59:59 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20070522225959-85fasy1na0irre21
Tags: 1.48-1
* New upstream release.
* Add build-dependency on libtest-pod-perl, for test coverage.
* Upgrade to debhelper compatibility level 5.
* Update watch file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
106
106
  my $self=shift;
107
107
 
108
108
  return undef unless defined  $self->{data}[ $self->{curp} ];
109
 
 
 
109
    
110
110
  my $cur =  $self->{data}[ $self->{curp} ];
 
111
  # do the search to avoid the count query and the search
 
112
  $cur->_DoSearch if $cur->{'must_redo_search'};
111
113
  if ( $cur->_ItemsCounter == $cur->Count ) {
112
114
        # move to the next element
113
115
        $self->{curp}++;