Roel Bouwman <[EMAIL PROTECTED]> writes:
> Running \df in psql results in the following output:
> ERROR: No such function 'oid8types' with the specified attributes
Apparently you're trying to use an old psql with v7. oid8 was renamed
to oidvector...
> Running the statement:
> select datetime('20000229'::date, '18:34'::time);
> results in:
> ERROR: No such function 'datetime' with the specified attributes
Type datetime was renamed to timestamp for improved SQL92 compliance,
and the associated functions went with it.
There's been some debate about whether we need to provide aliases for
these functions for backwards compatibility. I doubt that they *all*
need aliases, since many of 'em are usually invoked via operators,
but I imagine some of them do need aliases. It'd be useful to know
which ones are referred to explicitly in your applications.
regards, tom lane