You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DROP FUNCTION IF EXISTS async_response(INTEGER,TEXT,TEXT,TEXT);
DROP FUNCTION IF EXISTS async_response(TEXT,TEXT,TEXT,TEXT);
/*
DROP FUNCTION IF EXISTS async_response_async(INTEGER,TEXT,TEXT,TEXT);
*/
CREATE FUNCTION async_response(INTEGER,TEXT,TEXT,TEXT) RETURNS boolean AS 'async_response', 'async_response_tcp' LANGUAGE C VOLATILE CALLED ON NULL INPUT;
CREATE FUNCTION async_response(TEXT,TEXT,TEXT,TEXT) RETURNS boolean AS 'async_response', 'async_response_socket' LANGUAGE C VOLATILE CALLED ON NULL INPUT;
/*
CREATE FUNCTION async_response_async(INTEGER,TEXT,TEXT,TEXT) RETURNS boolean AS 'async_response', 'async_response_async' LANGUAGE C STABLE STRICT;