hacking postgres hashjoin algorithm

From: HS <j8shen(at)gmail(dot)com>
To: pgsql-hackers(at)postgresql(dot)org
Subject: hacking postgres hashjoin algorithm
Date: 2006-10-16 03:08:18
Message-ID: egut30$26r4$2@news.hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hello there

I am trying to play around with the hashjoin algorithm in postgres.

I am using the statement like
Select count(*) from r,s where r.id=s.id;

I looked at the function ExecHashJoin() in nodeHashjoin.c and cannot
find where the algorithm is comparing if r.id equals s.id

please advise.

Regards
hal

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Jeremy Drake 2006-10-16 03:11:19 constraints in query plans
Previous Message Harvell F 2006-10-16 01:58:35 Re: Postgresql Caching