X-Git-Url: http://www.sigaev.ru/git/gitweb.cgi?a=blobdiff_plain;f=gevel.sql.in;h=a2310bf677d9e5dc3fe3915fb09ef6a7b3d28a94;hb=bf5ed50f54f041782049b93abe9fa4bc43a4867d;hp=dc7784f40da7e4cb3fb58a7f8212bf93cbcb4175;hpb=8b7af6b1376dd6b60df600c479466ad0f25b5843;p=gevel.git diff --git a/gevel.sql.in b/gevel.sql.in index dc7784f..a2310bf 100644 --- a/gevel.sql.in +++ b/gevel.sql.in @@ -37,6 +37,12 @@ create or replace function gin_stat(text, int) language C with (isstrict); +create or replace function gin_statpage(text) + returns text + as 'MODULE_PATHNAME' + language C + with (isstrict); + create or replace function gin_count_estimate(text, tsquery) returns bigint as 'MODULE_PATHNAME' @@ -49,5 +55,11 @@ create or replace function spgist_stat(text) language C with (isstrict); +create or replace function spgist_print(text) + returns setof record + as 'MODULE_PATHNAME' + language C + with (isstrict); + END;