Re: pgsql/src backend/catalog/index.c backend/pars ...

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
Cc: pgsql-committers(at)postgresql(dot)org
Subject: Re: pgsql/src backend/catalog/index.c backend/pars ...
Date: 2001-05-18 23:00:31
Message-ID: 26963.990226831@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us> writes:
> Here is my comment added to the top of the code. Is it correct?

> * This code is confusing code because the database can accept
> * relation.column, column.function, or relation.column.function.
> * It can also be called as func(col) or func(col,col).

That's correct.

> * Funcname is the first parameter, and fargs are the rest.

That's not, or at least it doesn't apply to the dot-notation cases.
func(col) and col.func are equivalent notations and look the same
by the time they get to this routine.

regards, tom lane

In response to

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message Bruce Momjian 2001-05-18 23:02:05 Re: pgsql/src backend/catalog/index.c backend/pars ...
Previous Message Bruce Momjian 2001-05-18 22:55:57 Re: pgsql/src backend/catalog/index.c backend/pars ...