]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/OverIdx.pm
lei q: support vmd for external-only messages
[public-inbox.git] / lib / PublicInbox / OverIdx.pm
index 9013ae23e5349486a9913bc8593cc4ade791bed2..e1cd31b909bd0f173df3af3f069f01ff1e716847 100644 (file)
@@ -668,14 +668,4 @@ DELETE FROM eidxq WHERE docid = ?
 
 }
 
-sub blob_exists {
-       my ($self, $oidhex) = @_;
-       my $sth = $self->dbh->prepare_cached(<<'', undef, 1);
-SELECT COUNT(*) FROM xref3 WHERE oidbin = ?
-
-       $sth->bind_param(1, pack('H*', $oidhex), SQL_BLOB);
-       $sth->execute;
-       $sth->fetchrow_array;
-}
-
 1;