Fix test's failure due to fast update of GIN index
[gevel.git] / gevel.sql.in
index 6bfa5e8..4a71188 100644 (file)
@@ -31,4 +31,17 @@ create or replace function gin_stat(text)
         language 'C'
         with (isstrict); 
 
+create or replace function gin_stat(text, int)
+        returns setof record
+        as 'MODULE_PATHNAME'
+        language 'C'
+        with (isstrict); 
+
+create or replace function gin_count_estimate(text, tsquery)
+        returns bigint 
+        as 'MODULE_PATHNAME'
+        language 'C'
+        with (isstrict); 
+
+
 END;