On 10/6/2017 3:10 PM, Joshua D. Drake wrote:
On 10/06/2017 02:33 PM, Tom Lane wrote:
"Igal @ Lucee.org" writes:
How come `current_date` has no parenthesis but `clock_timestamp()`
does?
Because the SQL standard says that CURRENT_DATE doesn't have
parentheses.
It is a function by any other m
On 10/06/2017 02:33 PM, Tom Lane wrote:
"Igal @ Lucee.org" writes:
How come `current_date` has no parenthesis but `clock_timestamp()` does?
Because the SQL standard says that CURRENT_DATE doesn't have parentheses.
It is a function by any other measure, though.
(AFAICT, the SQL committee is u
"Igal @ Lucee.org" writes:
> How come `current_date` has no parenthesis but `clock_timestamp()` does?
Because the SQL standard says that CURRENT_DATE doesn't have parentheses.
It is a function by any other measure, though.
(AFAICT, the SQL committee is unacquainted with any principles of
program
On Fri, Oct 6, 2017 at 2:18 PM, Igal @ Lucee.org wrote:
> Hi,
>
> Is current_date a function? It's a bit puzzling to me since there are no
> parentheses after it, i.e.
>
> SELECT current_date;
>
> And not
>
> SELECT current_date(); -- syntax error
>
It, and the others like it, behave as f
Hi,
Is current_date a function? It's a bit puzzling to me since there are
no parentheses after it, i.e.
SELECT current_date;
And not
SELECT current_date(); -- syntax error
How come `current_date` has no parenthesis but `clock_timestamp()` does?
Thanks,
Igal Sapir
Lucee Core Develope