about summary refs log tree commit homepage
path: root/lib/PublicInbox/OverIdx.pm
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-08-22 06:06:25 +0000
committerEric Wong <e@yhbt.net>2020-08-23 00:14:02 +0000
commitae546078c5696ac73ad9f48c2c90163febb4a246 (patch)
treeb586532c89848510eee9782aeafb2d007c8f9805 /lib/PublicInbox/OverIdx.pm
parentf11e8e72fd42d3d8cbcf5207641d10470a92dcee (diff)
downloadpublic-inbox-ae546078c5696ac73ad9f48c2c90163febb4a246.tar.gz
This is the `tid' column from over.sqlite3; and will be used for
IMAP and JMAP search (among other things).
Diffstat (limited to 'lib/PublicInbox/OverIdx.pm')
-rw-r--r--lib/PublicInbox/OverIdx.pm18
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/PublicInbox/OverIdx.pm b/lib/PublicInbox/OverIdx.pm
index 4543bfa1..d42d6fe7 100644
--- a/lib/PublicInbox/OverIdx.pm
+++ b/lib/PublicInbox/OverIdx.pm
@@ -284,7 +284,7 @@ sub add_overview {
         my $dd = $smsg->to_doc_data;
         utf8::encode($dd);
         $dd = compress($dd);
-        add_over($self, [ @$smsg{qw(ts ds num)}, $mids, $refs, $xpath, $dd ]);
+        add_over($self, $smsg, $mids, $refs, $xpath, $dd);
 }
 
 sub _add_over {
@@ -311,10 +311,10 @@ sub _add_over {
 }
 
 sub add_over {
-        my ($self, $values) = @_;
-        my ($ts, $ds, $num, $mids, $refs, $xpath, $ddd) = @$values;
+        my ($self, $smsg, $mids, $refs, $xpath, $ddd) = @_;
         my $old_tid;
         my $vivified = 0;
+        my $num = $smsg->{num};
 
         begin_lazy($self);
         delete_by_num($self, $num, \$old_tid);
@@ -326,17 +326,17 @@ sub add_over {
                 $v > 1 and warn "BUG: vivified multiple ($v) ghosts for $mid\n";
                 $vivified += $v;
         }
-        my $tid = $vivified ? $old_tid : link_refs($self, $refs, $old_tid);
-        my $sid = sid($self, $xpath);
+        $smsg->{tid} = $vivified ? $old_tid : link_refs($self, $refs, $old_tid);
+        $smsg->{sid} = sid($self, $xpath);
         my $dbh = $self->{dbh};
         my $sth = $dbh->prepare_cached(<<'');
 INSERT INTO over (num, tid, sid, ts, ds, ddd)
 VALUES (?,?,?,?,?,?)
 
-        my $n = 0;
-        my @v = ($num, $tid, $sid, $ts, $ds);
-        foreach (@v) { $sth->bind_param(++$n, $_) }
-        $sth->bind_param(++$n, $ddd, SQL_BLOB);
+        my $nc = 1;
+        $sth->bind_param($nc, $num);
+        $sth->bind_param(++$nc, $smsg->{$_}) for (qw(tid sid ts ds));
+        $sth->bind_param(++$nc, $ddd, SQL_BLOB);
         $sth->execute;
         $sth = $dbh->prepare_cached(<<'');
 INSERT INTO id2num (id, num) VALUES (?,?)