Skip to content

Commit 6025cb3

Browse files
author
“LAKSHMIRPILLAI”
committed
Fix prettier issue
1 parent d78114c commit 6025cb3

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

super-mode-calculator/src/lib/build-query.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,12 @@ WITH
3232
exchange_rates AS (
3333
SELECT target AS from_currency,(SELECT FIRST_VALUE(rate) OVER (PARTITION BY target ORDER BY rate ASC) AS eur_to_gbp_rate
3434
FROM datatech-platform-prod.datalake.fixer_exchange_rates
35-
WHERE target = 'GBP' AND date = '${format(dateForCurrencyConversionTable, "yyyy-MM-dd")}'),) * (1/rate) AS to_gbp_rate
35+
WHERE target = 'GBP' AND date = '${format(
36+
dateForCurrencyConversionTable,
37+
'yyyy-MM-dd',
38+
)}'),) * (1/rate) AS to_gbp_rate
3639
FROM datatech-platform-prod.datalake.fixer_exchange_rates
37-
WHERE date = '${format(dateForCurrencyConversionTable, "yyyy-MM-dd")}'),),
40+
WHERE date = '${format(dateForCurrencyConversionTable, 'yyyy-MM-dd')}'),),
3841
acquisitions AS (
3942
SELECT
4043
CASE product

0 commit comments

Comments
 (0)