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
7 changes: 6 additions & 1 deletion module-1/hamburg_weather/pipeline/data/load_tasty_bytes.sql
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,11 @@ COPY INTO {{env}}_tasty_bytes.raw_pos.menu
FROM @{{env}}_tasty_bytes.public.s3load/raw_pos/menu/;


COPY INTO {{env}}_tasty_bytes.raw_pos.country
FROM @{{env}}_tasty_bytes.public.s3load/raw_pos/country/;



-- truck table load
COPY INTO {{env}}_tasty_bytes.raw_pos.truck
FROM @{{env}}_tasty_bytes.public.s3load/raw_pos/truck/;
Expand All @@ -338,4 +343,4 @@ FROM @{{env}}_tasty_bytes.public.s3load/raw_pos/subset_order_header/;

-- order_detail table load
COPY INTO {{env}}_tasty_bytes.raw_pos.order_detail
FROM @{{env}}_tasty_bytes.public.s3load/raw_pos/subset_order_detail/;
FROM @{{env}}_tasty_bytes.public.s3load/raw_pos/subset_order_detail/;