views cannot be stored as parquet...

This commit is contained in:
Antonis Lempesis 2022-03-29 13:47:48 +03:00
parent d8503cd191
commit ee24f3eb2c
1 changed files with 1 additions and 1 deletions

View File

@ -15,6 +15,6 @@ CREATE OR REPLACE VIEW ${stats_db_name}.organization_datasources STORED AS PARQU
SELECT organization AS id, id AS datasource
FROM ${stats_db_name}.datasource_organizations;
CREATE OR REPLACE VIEW ${stats_db_name}.organization_projects STORED AS PARQUET AS
CREATE OR REPLACE VIEW ${stats_db_name}.organization_projects AS
SELECT id AS project, organization as id
FROM ${stats_db_name}.project_organizations;