From aab8c6109653155e4b6df98745748bee60593088 Mon Sep 17 00:00:00 2001 From: Jobanpreet Singh Date: Sun, 15 Feb 2026 18:06:14 +0530 Subject: [PATCH] Update load_tasty_bytes.sql --- .../hamburg_weather/pipeline/data/load_tasty_bytes.sql | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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/;