about summary refs log tree commit homepage
path: root/lib/PublicInbox/IMAPsearchqp.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/IMAPsearchqp.pm')
-rw-r--r--lib/PublicInbox/IMAPsearchqp.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/PublicInbox/IMAPsearchqp.pm b/lib/PublicInbox/IMAPsearchqp.pm
index 2fb92bb8..9f0c1205 100644
--- a/lib/PublicInbox/IMAPsearchqp.pm
+++ b/lib/PublicInbox/IMAPsearchqp.pm
@@ -165,7 +165,7 @@ sub msn_set {
 # things that should not match
 sub impossible {
         my ($self) = @_;
-        push @{$self->{xap}}, 'bytes:..0';
+        push @{$self->{xap}}, 'z:..0';
         my $sql = $self->{sql} or return 1;
         $$sql .= ' AND num < 0';
 }
@@ -217,8 +217,8 @@ BEFORE_date : 'BEFORE' date { $q->BEFORE(\%item) }
 
 MSN_set : sequence_set { $q->msn_set($item{sequence_set}) }
 UID_set : "UID" sequence_set { $q->uid_set($item{sequence_set}) }
-LARGER_number : "LARGER" number { $q->xap_only("bytes:$item{number}..") }
-SMALLER_number : "SMALLER" number { $q->xap_only("bytes:..$item{number}") }
+LARGER_number : "LARGER" number { $q->xap_only("z:$item{number}..") }
+SMALLER_number : "SMALLER" number { $q->xap_only("z:..$item{number}") }
 
 DELETED : "DELETED" { $q->impossible }
 OLD : "OLD" { $q->impossible }