Is it possible to use keywords (date units) in a function definition?

Поиск
Список
Период
Сортировка
От Martin Gainty
Тема Is it possible to use keywords (date units) in a function definition?
Дата
Msg-id BLAPR19MB4227A67A5EC06EEEEC6B10BDAE820@BLAPR19MB4227.namprd19.prod.outlook.com
обсуждение исходный текст
Ответы Re: Is it possible to use keywords (date units) in a function definition?  ("David G. Johnston" <david.g.johnston@gmail.com>)
Список pgsql-general
Hello,

I recently tried to write a wrapper function to calculate the difference between two dates, mainly as a convenience. I'd essentially be emulating EXTRACT(<dateunit> FROM date1 - date2), in various ways. I got a bit stuck on allowing specification of the <dateunit>: is this possible in function definitions? I'd like to be able to write something along the lines of:

CREATE OR REPLACE FUNCTION DATETIME_DIFF(end TIMESTAMP(3), start TIMESTAMP(3), datepart UNIT) RETURNS DOUBLE PRECISION AS $$
BEGIN
RETURN EXTRACT(datepart FROM end - start);
END; $$
LANGUAGE PLPGSQL;

One option would be to treat datepart as a string, but this doesn't work for my use case. (Background: I'm trying to refactor a bunch of SQL scripts to work on Google BigQuery and PostgreSQL by writing PostgreSQL functions to emulate BigQuery functions. Unfortunately BigQuery does not recognize the third argument if it is a string (i.e. 'HOUR' does not work but HOUR does)).

Any ideas? Is this even possible?

-Alistair

В списке pgsql-general по дате отправления:

Предыдущее
От: Peter
Дата:
Сообщение: 12.2: Why do my Redo Logs disappear??
Следующее
От: "David G. Johnston"
Дата:
Сообщение: Re: Is it possible to use keywords (date units) in a function definition?