This should be the same as are used in the prodiction. We don't use them
in a way that has any effect on this today, but in case we do in the
future.
--
CREATE OR REPLACE FUNCTION varnish_purge(url text)
-RETURNS bigint
+RETURNS void
AS $$
- SELECT 1::bigint;
$$ LANGUAGE 'sql';
-CREATE OR REPLACE FUNCTION varnish_purge_expr(url text)
-RETURNS bigint
+CREATE OR REPLACE FUNCTION varnish_purge_expr(expr text)
+RETURNS void
AS $$
- SELECT 1::bigint;
$$ LANGUAGE 'sql';
COMMIT;
\ No newline at end of file