From 26149e7755825e204ee1d382bb9e0c0385a6dcb5 Mon Sep 17 00:00:00 2001 From: Raul Ochoa Date: Thu, 14 Apr 2016 11:53:48 +0200 Subject: [PATCH] cdb_analysis_catalog is already retrieved from camshaft --- test/support/sql/windshaft.test.sql | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/test/support/sql/windshaft.test.sql b/test/support/sql/windshaft.test.sql index 506c12b8..4690f081 100644 --- a/test/support/sql/windshaft.test.sql +++ b/test/support/sql/windshaft.test.sql @@ -336,22 +336,6 @@ INSERT INTO _vovw_1_test_table_overviews VALUES -- analysis tables ----------------------------------------------- - - -drop table if exists cdb_analysis_catalog; -create table cdb_analysis_catalog ( - node_id char(40) CONSTRAINT cdb_analysis_catalog_pkey PRIMARY KEY, - analysis_def json NOT NULL, - input_nodes char(40) ARRAY NOT NULL DEFAULT '{}', - affected_tables regclass[] NOT NULL DEFAULT '{}', - cache_tables regclass[] NOT NULL DEFAULT '{}', - created_at timestamp with time zone NOT NULL DEFAULT now(), - updated_at timestamp with time zone NOT NULL DEFAULT now(), - used_at timestamp with time zone NOT NULL DEFAULT now(), - hits NUMERIC DEFAULT 0, - last_used_from char(40) -); - ALTER TABLE cdb_analysis_catalog OWNER TO :TESTUSER;