Merge pull request #268 from CartoDB/cdb_analysis_catalog-export-config

Add export config for cdb_analysis_catalog table
This commit is contained in:
Raul Ochoa 2016-07-01 14:58:34 +02:00 committed by GitHub
commit 5eddf5ce8e

View File

@ -29,6 +29,13 @@ cartodb.cdb_analysis_catalog (
last_error_message text
);
-- This can only be called from an SQL script executed by CREATE EXTENSION
DO LANGUAGE 'plpgsql' $$
BEGIN
PERFORM pg_catalog.pg_extension_config_dump('cartodb.cdb_analysis_catalog', '');
END
$$;
DO $$
BEGIN
BEGIN