Fix RPC GET filters bugs with not/{plain,phrase}fts operators (#980)

This commit is contained in:
Steve Chávez
2017-09-26 20:07:36 -07:00
committed by Joe Nelson
parent 3ccae4bb8b
commit a6cce691b5
5 changed files with 58 additions and 5 deletions
+4
View File
@@ -1250,6 +1250,10 @@ $$ language sql;
create function test.privileged_hello(name text) returns text as $$
select 'Privileged hello to ' || $1;
$$ language sql;
create function test.get_tsearch() returns setof test.tsearch AS $$
SELECT * FROM test.tsearch;
$$ language sql;
--
-- PostgreSQL database dump complete
--