Re: [INTERFACES] Functions vs. Columns????? - Mailing list pgsql-interfaces

From Tom Lane
Subject Re: [INTERFACES] Functions vs. Columns?????
Date
Msg-id 1304.950677965@sss.pgh.pa.us
Whole thread Raw
In response to Functions vs. Columns?????  (Byron Nikolaidis <byron.nikolaidis@home.com>)
List pgsql-interfaces
Byron Nikolaidis <byron.nikolaidis@home.com> writes:
> Works                        Doesn't Work
> ------                       ------------
> select now();                select now;
> select current_date;         select current_date();

> It seems that there should be some consistency here in the use of
> parenthesis.

Consistency?  Who needs consistency ;-) ?

What you're seeing here is the conflict of two cultures.  The SQL92
standard mandates a keyword CURRENT_DATE, with *no* parentheses,
as the way to get the current date.  now() comes out of the Berkeley
Postquel code, which inherits from an academic tradition that doesn't
like inventing reserved words without need, and also thinks that
things that look like constants ought to *be* constants.  The way
to resolve that tension, in academese, is to invent parameterless
functions.  But the folks who wrote the SQL92 spec seem to have been
raised on COBOL, which never met a reserved word it didn't like.

Anyway, Postgres supports both the SQL92 notation and the notation
we inherited from Postquel.  I don't think that adding with-or-
without-parentheses-take-your-pick-for-both syntax freedom would be
a step forward... that path leads to way too many traps for the
unwary programmer.
        regards, tom lane


pgsql-interfaces by date:

Previous
From: Joseph Shraibman
Date:
Subject: Re: [INTERFACES] DELETEs with jdbc
Next
From: Thomas Lockhart
Date:
Subject: Re: [INTERFACES] Functions vs. Columns?????