Howdy,

Any interest in adding a function like this to core?

Datum
pg_version(PG_FUNCTION_ARGS)
{
    PG_RETURN_INT32(PG_VERSION_NUM);
}


That returns an integer, such as

try=# select pg_version();
 pg_version
------------
      80304
(1 row)

I've whipped this up for pgtap, as it'll be useful for determing when to skip tests based on a version of PostgreSQL, but I thought it might be generally useful enough to add to core.

Thoughts?

Best,

David


--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

Reply via email to