blob: 1be1446748425bc5261e2f6ff968cd5f50909a64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
create or replace function pgq.version()
returns text as $$
-- ----------------------------------------------------------------------
-- Function: pgq.version(0)
--
-- Returns version string for pgq. ATM it is based on SkyTools
-- version and only bumped when database code changes.
-- ----------------------------------------------------------------------
begin
return '3.2.6';
end;
$$ language plpgsql;
|