X-Git-Url: http://www.sigaev.ru/git/gitweb.cgi?a=blobdiff_plain;f=gevel.sql.in;h=44abdeb59ca8be22debd24e8ac521444433efc20;hb=HEAD;hp=48691f8f33d9c3da8b411a2daf1b791eb3000a97;hpb=58b7ad96a866faa048754492bd269fe41c46436f;p=gevel.git diff --git a/gevel.sql.in b/gevel.sql.in index 48691f8..44abdeb 100644 --- a/gevel.sql.in +++ b/gevel.sql.in @@ -5,43 +5,61 @@ create or replace function gist_tree(text) returns text as 'MODULE_PATHNAME' language C - with (isstrict); + strict; create or replace function gist_tree(text,int4) returns text as 'MODULE_PATHNAME' language C - with (isstrict); + strict; create or replace function gist_stat(text) returns text as 'MODULE_PATHNAME' language C - with (isstrict); + strict; create or replace function gist_print(text) returns setof record as 'MODULE_PATHNAME' language C - with (isstrict); + strict; create or replace function gin_stat(text) returns setof record as 'MODULE_PATHNAME' language C - with (isstrict); + strict; create or replace function gin_stat(text, int) returns setof record as 'MODULE_PATHNAME' language C - with (isstrict); + strict; + +create or replace function gin_statpage(text) + returns text + as 'MODULE_PATHNAME' + language C + strict; create or replace function gin_count_estimate(text, tsquery) returns bigint as 'MODULE_PATHNAME' language C - with (isstrict); + strict; + +create or replace function spgist_stat(text) + returns text + as 'MODULE_PATHNAME' + language C + strict; + +create or replace function spgist_print(text) + returns setof record + as 'MODULE_PATHNAME' + language C + strict; END;