Removes cartodb-extension-dep

pull/64/head
Raul Ochoa 8 years ago
parent 3480a0d252
commit 1db938c450

@ -60,7 +60,6 @@ it can be installed directly with:
* `CREATE EXTENSION IF NOT EXISTS plpythonu;`
`CREATE EXTENSION IF NOT EXISTS postgis;`
`CREATE EXTENSION IF NOT EXISTS cartodb;`
`CREATE EXTENSION crankshaft WITH VERSION 'dev';`
Note: the development extension uses the development python virtual

@ -1,5 +1,5 @@
comment = 'CartoDB Spatial Analysis extension'
default_version = '0.0.3'
requires = 'plpythonu, postgis, cartodb'
requires = 'plpythonu, postgis'
superuser = true
schema = cdb_crankshaft

@ -1,6 +1,5 @@
-- Install dependencies
CREATE EXTENSION plpythonu;
CREATE EXTENSION postgis;
CREATE EXTENSION cartodb;
-- Install the extension
CREATE EXTENSION crankshaft VERSION 'dev';

@ -1,7 +1,6 @@
-- Install dependencies
CREATE EXTENSION plpythonu;
CREATE EXTENSION postgis;
CREATE EXTENSION cartodb;
-- Install the extension
CREATE EXTENSION crankshaft VERSION 'dev';

@ -4,7 +4,7 @@ SELECT cdb_crankshaft._cdb_random_seeds(1234);
SET ROLE test_regular_user;
-- Add to the search path the schema
SET search_path TO public,cartodb,cdb_crankshaft;
SET search_path TO public,cdb_crankshaft;
-- Exercise public functions
SELECT ppoints.code, m.quads

Loading…
Cancel
Save