[prev in list] [next in list] [prev in thread] [next in thread] 

List:       postgresql-sql
Subject:    Re: [SQL] [PERFORM] SQL Query Performance - what gives?
From:       Pierre_Frédéric_Caillau
Date:       2009-08-19 6:27:52
Message-ID: op.uywb8qyucke6l8 () soyouz
[Download RAW message or body]


> 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...

-- 
Sent via pgsql-sql mailing list (pgsql-sql@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-sql
[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic