Re: optimization join on random value - Mailing list pgsql-hackers

From Jim Nasby
Subject Re: optimization join on random value
Date
Msg-id 5546D4FA.6080904@BlueTreble.com
Whole thread Raw
In response to optimization join on random value  (Anton <djeday84@gmail.com>)
List pgsql-hackers
On 5/3/15 4:15 PM, Anton wrote:
> Hello guru of postgres,  it's possoble to tune query with join on random
> string ?
> i know that it is not real life example, but i need it for tests.

Moving to -general, which is the proper list for this. (BCC -hackers)

 > soe-#         WHERE customer_id = trunc( random()*45000) ;

You could create a temp table with the random value and JOIN to it:

CREATE TEMP TABLE rnd AS SELECT random()*45000;

Another option might be to use a prepared statement:

PREPARE test AS SELECT ... WHERE customer_id = $1;
EXECUTE test( random()*45000 );
--
Jim Nasby, Data Architect, Blue Treble Consulting
Data in Trouble? Get it in Treble! http://BlueTreble.com


pgsql-hackers by date:

Previous
From: Jim Nasby
Date:
Subject: Re: CTE optimization fence on the todo list?
Next
From: Dmitry Shirokov
Date:
Subject: JSON data type and schema validation