Re: NODE

From: Heikki Linnakangas <hlinnakangas(at)vmware(dot)com>
To: Ravi Kiran <ravi(dot)kolanpaka(at)gmail(dot)com>, PostgreSQL Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: NODE
Date: 2015-01-05 19:32:56
Message-ID: 54AAE6E8.9010006@vmware.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On 01/05/2015 09:28 PM, Ravi Kiran wrote:
> hi,
>
> I am going through the hashjoin algorithm in postgres. I find a function
> ExecHashjoin , which is called each time a new tuple is required by the
> hash join *Node.*
>
> could someone explain what exactly node mean in postgres.

See src/backend/nodes/. It's a mechanism that imitates class inheritance
in object-oriented languages. Node is the superclass that everything
else inherits from. Every Node type supports some basic operations like
copy, equals and serialization to/from text.

- Heikki

In response to

  • NODE at 2015-01-05 19:28:07 from Ravi Kiran

Browse pgsql-hackers by date

  From Date Subject
Next Message Robert Haas 2015-01-05 19:44:11 Re: recovery_min_apply_delay with a negative value
Previous Message Ravi Kiran 2015-01-05 19:28:07 NODE