about summary refs log tree commit homepage
path: root/lib/PublicInbox/Msgmap.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/Msgmap.pm')
-rw-r--r--lib/PublicInbox/Msgmap.pm19
1 files changed, 6 insertions, 13 deletions
diff --git a/lib/PublicInbox/Msgmap.pm b/lib/PublicInbox/Msgmap.pm
index e7f7e2c9..7290959d 100644
--- a/lib/PublicInbox/Msgmap.pm
+++ b/lib/PublicInbox/Msgmap.pm
@@ -9,10 +9,8 @@
 # This is maintained by ::SearchIdx
 package PublicInbox::Msgmap;
 use strict;
-use warnings;
 use DBI;
 use DBD::SQLite;
-use File::Temp qw(tempfile);
 use PublicInbox::Over;
 use PublicInbox::Spawn;
 
@@ -50,18 +48,13 @@ sub new_file {
 # used to keep track of used numeric mappings for v2 reindex
 sub tmp_clone {
         my ($self, $dir) = @_;
-        my ($fh, $fn) = tempfile('msgmap-XXXXXXXX', EXLOCK => 0, DIR => $dir);
+        require File::Temp;
+        my $tmp = "mm_tmp-$$-XXXXXX";
+        my ($fh, $fn) = File::Temp::tempfile($tmp, EXLOCK => 0, DIR => $dir);
         PublicInbox::Spawn::nodatacow_fd(fileno($fh));
-        my $tmp;
-        if ($self->{dbh}->can('sqlite_backup_to_dbh')) {
-                $tmp = ref($self)->new_file($fn, 2);
-                $tmp->{dbh}->do('PRAGMA journal_mode = MEMORY');
-                $self->{dbh}->sqlite_backup_to_dbh($tmp->{dbh});
-        } else { # DBD::SQLite <= 1.61_01
-                $self->{dbh}->sqlite_backup_to_file($fn);
-                $tmp = ref($self)->new_file($fn, 2);
-                $tmp->{dbh}->do('PRAGMA journal_mode = MEMORY');
-        }
+        $self->{dbh}->sqlite_backup_to_file($fn);
+        $tmp = ref($self)->new_file($fn, 2);
+        $tmp->{dbh}->do('PRAGMA journal_mode = MEMORY');
         $tmp->{pid} = $$;
         $tmp;
 }