The
timestamp() syntax has been modified, so be compliant with SQL99. (eg.
timestamp(4) for 4 digits of millisecond precision). It's in the release
notes.
So,
you will now need to double quote and it will work fine:
"timestamp"('now') and "interval"('7 days');
However I suggest you just convert to standard
syntax:
select
timestamp 'now';
or
better: select current_timestamp;
and
select
interval '7 days';
These
are sql99 compatible statements...
Chris
|