dataservices-api/client
Rafa de la Torre 63786caaa6 Fix bad renaming of function parameter
This fixes the following error when trying to upgrade:

```
cannot change name of input parameter "organization_name"
```

The problem was introduced ages ago. I fixed it by running a script:

```bash
BAD_REGEXP='CREATE OR REPLACE FUNCTION cdb_dataservices_client\._cdb_geocode_admin0_polygon (username text, orgname text, country_name text)'
REPLACEMENT='CREATE OR REPLACE FUNCTION cdb_dataservices_client._cdb_geocode_admin0_polygon (username text, organization_name text, country_name text)'
git grep -l "$BAD_REGEXP" | xargs sed -i "s/$BAD_REGEXP/$REPLACEMENT/g"
```
2017-12-01 12:52:17 +01:00
..
old_versions Fix bad renaming of function parameter 2017-12-01 12:52:17 +01:00
renderer Categorize renderer template functions 2017-11-14 16:45:36 +01:00
sql Client: Add PARALLEL and VOLATILE categories 2017-11-14 16:45:36 +01:00
test Remove installation of schema_triggers 2017-10-04 17:26:30 +02:00
.gitignore Add generated file to .gitignore #314 2016-12-14 12:06:51 +01:00
cdb_dataservices_client--0.21.0--0.22.0.sql Fix bad renaming of function parameter 2017-12-01 12:52:17 +01:00
cdb_dataservices_client--0.22.0--0.21.0.sql Fix bad renaming of function parameter 2017-12-01 12:52:17 +01:00
cdb_dataservices_client--0.22.0.sql Fix bad renaming of function parameter 2017-12-01 12:52:17 +01:00
cdb_dataservices_client.control Stub new client version 0.22.0 2017-11-30 12:31:36 +01:00
Makefile Make the install target depend on deploy 2017-12-01 10:47:30 +01:00
README.md Update README.md 2016-07-29 17:52:18 +02:00
upgrade_downgrade_template.erb Add cartodb to the search path 2016-12-29 12:11:00 +01:00

CARTO Data Services API client extension

Postgres extension for the CARTO Data Services API, client side.

Dependencies

This extension is thought to be used on top of CartoDB geocoder extension, for the multiples available geocoders (internal, nokia, etc).

The following is a non-comprehensive list of dependencies:

  • Postgres 9.3+
  • Postgis extension
  • Schema triggers extension
  • cartodb-postgresql CARTO extension

Installation into the db cluster

This requires root privileges

sudo make all install

Execute tests

PGUSER=postgres make installcheck

Build, install & test

One-liner:

sudo PGUSER=postgres make all install installcheck

Install onto a CARTO user's database

psql -U postgres cartodb_dev_user_fe3b850a-01c0-48f9-8a26-a82f09e9b53f_db

and then:

CREATE EXTENSION cdb_dataservices_client;

The extension creation in the user's db requires superuser privileges.

User database configuration

After installing the client extension in a database, you will need to set up your configuration to be able to connect with the server.

-- Point to the dataservices server DB (you can use a specific database for the server or your same user's):
SELECT CDB_Conf_SetConf('geocoder_server_config', '{ "connection_str": "host=localhost port=5432 dbname=<SERVER_DB_NAME> user=postgres"}');

SELECT CDB_Conf_SetConf('user_config', '{"is_organization": false, "entity_name": "<YOUR_USERNAME>"}');