Re: WIP: cross column correlation ... - Mailing list pgsql-hackers

From PostgreSQL - Hans-Jürgen Schönig
Subject Re: WIP: cross column correlation ...
Date
Msg-id 2CAFE07A-9514-414D-9F44-BE85720041E8@cybertec.at
Whole thread Raw
In response to Re: WIP: cross column correlation ...  (Josh Berkus <josh@agliodbs.com>)
List pgsql-hackers
On Feb 24, 2011, at 2:09 AM, Josh Berkus wrote:

>
>> Personally, I think the first thing we ought to do is add a real, bona
>> fide planner hint to override the selectivity calculation manually,
>> maybe something like this:
>>
>> WHERE (x < 5 AND y = 1) SELECTIVITY (0.1);
>>
>> Then, having provided a method for the DBA to extinguish the raging
>> flames of searing agony which are consuming them while a crocodile
>> chews off their leg and their boss asks them why they didn't use
>> Oracle, we can continue bikeshedding about the best way of fixing this
>> problem in a more user-transparent fashion.
>
> Is there some way we can do that without adding the selectivity hint to
> the query itself?  That's the biggest issue with hints.
>



well, you could hide this hint in the system table - say; instead of decorating the query you could store the
decorationin some system relation ... but, if you get it right, you call this decoration histogram ;). 
i think the patch with a multi-dim histogram is good (i have seen something similar for PostGIS).
what is still needed in our patch is a.) multi-dim sampling (no idea how to get it right) and b.) investigating how to
dealwith joins and expressions (e.g. cos(id) ). 
hints into the right direction are highly welcome.
many thanks,
    hans


--
Cybertec Schönig & Schönig GmbH
Gröhrmühlgasse 26
A-2700 Wiener Neustadt, Austria
Web: http://www.postgresql-support.de



pgsql-hackers by date:

Previous
From: Robert Haas
Date:
Subject: Re: WIP: cross column correlation ...
Next
From: Daniel Farina
Date:
Subject: Re: Sync Rep v17