Support using a common redis connection

If sentinel_host or sentinel_cluster_id is not provided it will try to
connect with a redis_host parameter
This commit is contained in:
Luis Bosque
2016-02-26 10:49:08 +01:00
committed by Mario de Frutos
parent 557f67c51f
commit 93463b3032
39 changed files with 2839 additions and 16 deletions
@@ -0,0 +1,7 @@
-- Check for isochrone signatures
SELECT exists(SELECT *
FROM pg_proc p
INNER JOIN pg_namespace ns ON (p.pronamespace = ns.oid)
WHERE ns.nspname = 'cdb_dataservices_server'
AND proname = 'cdb_isochrone'
AND oidvectortypes(p.proargtypes) = 'text, text, geometry, text, integer[], text[]');