diff --git a/module-1/hamburg_weather/pipeline/data/load_tasty_bytes.sql b/module-1/hamburg_weather/pipeline/data/load_tasty_bytes.sql index 4565f538..d9f4358a 100644 --- a/module-1/hamburg_weather/pipeline/data/load_tasty_bytes.sql +++ b/module-1/hamburg_weather/pipeline/data/load_tasty_bytes.sql @@ -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/; @@ -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/; \ No newline at end of file +FROM @{{env}}_tasty_bytes.public.s3load/raw_pos/subset_order_detail/;