Skip to content

Commit

Permalink
fix sql typo
Browse files Browse the repository at this point in the history
  • Loading branch information
eslamdyab21 committed Jan 19, 2025
1 parent 241c3bb commit 86b6aa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spark_etls/raw_solar_panel_power_etl.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def main():
WHEN MATCHED THEN UPDATE SET
target.capacity_kwh = source.capacity_kwh,
target.intensity_power_rating = source.intensity_power_rating,
target.temperature_power_rating = source.temperature_power_rating,
target.temperature_power_rating = source.temperature_power_rating
WHEN NOT MATCHED THEN
INSERT (id, name, capacity_kwh, intensity_power_rating, temperature_power_rating)
VALUES (source.id, source.name, source.capacity_kwh, source.intensity_power_rating, source.temperature_power_rating)
Expand Down

0 comments on commit 86b6aa5

Please sign in to comment.