Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions setup/01_setup_snowflake.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
-- Create warehouse used by the localstack connection
CREATE WAREHOUSE IF NOT EXISTS test WITH WAREHOUSE_SIZE = 'XSMALL';
USE WAREHOUSE test;

-- Create and use database
CREATE DATABASE IF NOT EXISTS FACTORY_PIPELINE_DEMO;
USE DATABASE FACTORY_PIPELINE_DEMO;
Expand Down
Loading