projects
/
irspy-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
621fcd8
)
Destroy connection's old result-set when making a new one.
author
Mike Taylor
<mike@indexdata.com>
Fri, 9 Mar 2007 08:57:34 +0000
(08:57 +0000)
committer
Mike Taylor
<mike@indexdata.com>
Fri, 9 Mar 2007 08:57:34 +0000
(08:57 +0000)
lib/ZOOM/IRSpy/Task/Search.pm
patch
|
blob
|
history
diff --git
a/lib/ZOOM/IRSpy/Task/Search.pm
b/lib/ZOOM/IRSpy/Task/Search.pm
index
13794ce
..
91af576
100644
(file)
--- a/
lib/ZOOM/IRSpy/Task/Search.pm
+++ b/
lib/ZOOM/IRSpy/Task/Search.pm
@@
-1,4
+1,4
@@
-# $Id: Search.pm,v 1.10 2007-03-07 17:59:53 mike Exp $
+# $Id: Search.pm,v 1.11 2007-03-09 08:57:34 mike Exp $
package ZOOM::IRSpy::Task::Search;
@@
-44,6
+44,7
@@
sub run {
my $query = $this->{query};
$this->irspy()->log("irspy_task", $conn->option("host"),
" searching for '$query'");
+ $this->{rs}->destroy() if defined $this->{rs};
$this->{rs} = $conn->search_pqf($query);
warn "no ZOOM-C level events queued by $this"
if $conn->is_idle();