]> Sergey Matveev's repositories - public-inbox.git/commitdiff
over: unset sqlite_unicode attribute
authorEric Wong <e@yhbt.net>
Tue, 14 Jul 2020 02:14:30 +0000 (02:14 +0000)
committerEric Wong <e@yhbt.net>
Tue, 14 Jul 2020 23:22:56 +0000 (23:22 +0000)
None of the human-readable strings stored in over.sqlite3
require UTF-8.  Message-IDs do not, nor do the compressed
Subject IDs (sid) we use for Subject-based threading.  And the
`ddd' (doc-data-deflated) column is of course binary data.

This frees us of having to use SQL_BLOB for the `ddd', column,
and will open the door for us to use dbh_new for Msgmap, too.

lib/PublicInbox/Over.pm
lib/PublicInbox/OverIdx.pm

index e5a980d59eacae3ba699e06af614cc43e83b2d2a..5d285057d690371653d0d2c6cbbaf6fcfee3c3ce 100644 (file)
@@ -36,7 +36,6 @@ sub dbh_new {
                $st = pack('dd', $st[0], $st[1]);
        } while ($st ne $self->{st} && $tries++ < 3);
        warn "W: $f: .st_dev, .st_ino unstable\n" if $st ne $self->{st};
-       $dbh->{sqlite_unicode} = 1;
        $dbh;
 }
 
index 008a5d1a936fd981786c2a7158aa2f9271e6f187..13aa2d74aed760e0b85ae277b014b059e2c64d00 100644 (file)
@@ -12,7 +12,7 @@ use strict;
 use warnings;
 use base qw(PublicInbox::Over);
 use IO::Handle;
-use DBI qw(:sql_types); # SQL_BLOB
+use DBI;
 use PublicInbox::MID qw/id_compress mids_for_index references/;
 use PublicInbox::Smsg qw(subject_normalized);
 use Compress::Zlib qw(compress);
@@ -309,7 +309,7 @@ VALUES (?,?,?,?,?,?)
        my $n = 0;
        my @v = ($num, $tid, $sid, $ts, $ds);
        foreach (@v) { $sth->bind_param(++$n, $_) }
-       $sth->bind_param(++$n, $ddd, SQL_BLOB);
+       $sth->bind_param(++$n, $ddd);
        $sth->execute;
        $sth = $dbh->prepare_cached(<<'');
 INSERT INTO id2num (id, num) VALUES (?,?)