Skip to content

Commit 4e471ad

Browse files
committed
Chore: Fix the Airflow tests by switching from table to view for raw.demographics
1 parent b0f84dd commit 4e471ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/sushi/models/customers.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ MODEL (
99
);
1010

1111
CREATE SCHEMA IF NOT EXISTS raw;
12-
DROP TABLE IF EXISTS raw.demographics;
13-
CREATE TABLE raw.demographics AS (
12+
DROP VIEW IF EXISTS raw.demographics;
13+
CREATE VIEW raw.demographics AS (
1414
SELECT 1 AS customer_id, '00000' AS zip
1515
);
1616

0 commit comments

Comments
 (0)