Removes cartodb-extension-dep
This commit is contained in:
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 plpythonu;`
|
||||||
`CREATE EXTENSION IF NOT EXISTS postgis;`
|
`CREATE EXTENSION IF NOT EXISTS postgis;`
|
||||||
`CREATE EXTENSION IF NOT EXISTS cartodb;`
|
|
||||||
`CREATE EXTENSION crankshaft WITH VERSION 'dev';`
|
`CREATE EXTENSION crankshaft WITH VERSION 'dev';`
|
||||||
|
|
||||||
Note: the development extension uses the development python virtual
|
Note: the development extension uses the development python virtual
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
comment = 'CartoDB Spatial Analysis extension'
|
comment = 'CartoDB Spatial Analysis extension'
|
||||||
default_version = '0.0.3'
|
default_version = '0.0.3'
|
||||||
requires = 'plpythonu, postgis, cartodb'
|
requires = 'plpythonu, postgis'
|
||||||
superuser = true
|
superuser = true
|
||||||
schema = cdb_crankshaft
|
schema = cdb_crankshaft
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
-- Install dependencies
|
-- Install dependencies
|
||||||
CREATE EXTENSION plpythonu;
|
CREATE EXTENSION plpythonu;
|
||||||
CREATE EXTENSION postgis;
|
CREATE EXTENSION postgis;
|
||||||
CREATE EXTENSION cartodb;
|
|
||||||
-- Install the extension
|
-- Install the extension
|
||||||
CREATE EXTENSION crankshaft VERSION 'dev';
|
CREATE EXTENSION crankshaft VERSION 'dev';
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
-- Install dependencies
|
-- Install dependencies
|
||||||
CREATE EXTENSION plpythonu;
|
CREATE EXTENSION plpythonu;
|
||||||
CREATE EXTENSION postgis;
|
CREATE EXTENSION postgis;
|
||||||
CREATE EXTENSION cartodb;
|
|
||||||
|
|
||||||
-- Install the extension
|
-- Install the extension
|
||||||
CREATE EXTENSION crankshaft VERSION 'dev';
|
CREATE EXTENSION crankshaft VERSION 'dev';
|
||||||
|
@ -4,7 +4,7 @@ SELECT cdb_crankshaft._cdb_random_seeds(1234);
|
|||||||
SET ROLE test_regular_user;
|
SET ROLE test_regular_user;
|
||||||
|
|
||||||
-- Add to the search path the schema
|
-- 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
|
-- Exercise public functions
|
||||||
SELECT ppoints.code, m.quads
|
SELECT ppoints.code, m.quads
|
||||||
|
Loading…
Reference in New Issue
Block a user