Connects with conf table, implements helper and adds tests

This commit is contained in:
Guido Fioravantti
2015-11-10 15:31:53 +01:00
parent 47ff4d4d44
commit aabc873eac
4 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
-- Create a conf table
CREATE TABLE conf (key TEXT NOT NULL PRIMARY KEY, values_json TEXT);
INSERT INTO conf VALUES ('cds', '{"Manolo Escobar": {"El Limonero":"En stock", "Viva el vino":"Sin stock"}}');
-- Test key retrieval
SELECT cdb_geocoder_server._get_conf('cds');
-- Test no key exception
SELECT cdb_geocoder_server._get_conf('no existe');
-- Drop conf table
DROP TABLE conf;