Re: [SQL] SQL Query Performance - what gives? - Mailing list pgsql-performance

From Pierre Frédéric Caillaud
Subject Re: [SQL] SQL Query Performance - what gives?
Date
Msg-id op.uywb8qyucke6l8@soyouz
Whole thread Raw
In response to Re: [SQL] SQL Query Performance - what gives?  (Karl Denninger <karl@denninger.net>)
List pgsql-performance
> The bitmask allows the setting of multiple permissions but the table
> definition doesn't have to change (well, so long as the bits fit into a
> word!)  Finally, this is a message forum - the actual code itself is
> template-driven and the bitmask permission structure is ALL OVER the
> templates; getting that out of there would be a really nasty rewrite,
> not to mention breaking the user (non-developer, but owner)
> extensibility of the current structure.
>
> Is there a way to TELL the planner how to deal with this, even if it
> makes the SQL non-portable or is a hack on the source mandatory?

    You could use an integer array instead of a bit mask, make a gist index
on it, and instead of doing "mask & xxx" do "array contains xxx", which is
indexable with gist. The idea is that it can get much better row
estimation. Instead of 1,2,3, you can use 1,2,4,8, etc if you like. you'd
probably need a function to convert a bitmask into ints and another to do
the conversion back, so the rest of your app gets the expected bitmasks.
Or add a bitmask type to postgres with ptoper statistics...

pgsql-performance by date:

Previous
From: Karl Denninger
Date:
Subject: Re: [SQL] SQL Query Performance - what gives?
Next
From: Ivan Voras
Date:
Subject: Re: SQL Query Performance - what gives?