даг наконец-то работает

This commit is contained in:
2025-12-10 23:49:01 +03:00
parent 359245366a
commit 342f9bdb62
4 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
DO $$
DECLARE
v_batch_id text := {{ params.batch_id | tojson }}::text;
v_batch_id text := '{{ ds_nodash }}'::text;
v_prev_ts timestamp;
v_src_count bigint;
v_stg_count bigint;
+2 -2
View File
@@ -17,13 +17,13 @@ SELECT
total_amount::text,
book_date::timestamp,
now(),
{{ params.batch_id | tojson }}::text
'{{ ds_nodash }}'::text
FROM stg.bookings_ext
WHERE book_date > COALESCE(
(
SELECT max(src_created_at_ts)
FROM stg.bookings
WHERE batch_id <> {{ params.batch_id | tojson }}::text
WHERE batch_id <> '{{ ds_nodash }}'::text
OR batch_id IS NULL
),
TIMESTAMP '1900-01-01 00:00:00'