Re: OT - Query for bit pattern - Mailing list pgsql-jdbc

From Tom Lane
Subject Re: OT - Query for bit pattern
Date
Msg-id 22180.1206670264@sss.pgh.pa.us
Whole thread Raw
In response to OT - Query for bit pattern  (Paul Tomblin <ptomblin@gmail.com>)
Responses Re: OT - Query for bit pattern  (Gregory Stark <stark@enterprisedb.com>)
List pgsql-jdbc
Paul Tomblin <ptomblin@gmail.com> writes:
> If I have a bunch of data where one column in the table is a bitmap, is there
> an efficient way to do a query for all the records whose bitmap's first N bits
> matches a particular pattern?   Naively, I would store it as an int and do
> whatever the sql equivalent of '(hhcode & 0b11110000...) = 0b010100000...)'.
> But that is probably horribly inefficient.  Is there a better way?

One possibility is to change the bitmap to an integer array and use the
contrib/intarray module's GIST index support.  The intarray field will be
bulkier than the bitmap (though maybe not if your bitarrays are sparse),
but avoiding seqscan lookups might be worth it.

Or if you're willing to put in some work, you could make an index
opclass for bitmaps that works like intarray's does.

            regards, tom lane

pgsql-jdbc by date:

Previous
From: Paul Tomblin
Date:
Subject: OT - Query for bit pattern
Next
From: "Mats Ekelund"
Date:
Subject: Issue with DataBaseMetaData.GetTypeInfo()