From fbefcd3b4d55fe17a14239ccad6e5b69c6945be8 Mon Sep 17 00:00:00 2001 From: Jack Forgash <58153492+forgxyz@users.noreply.github.com> Date: Wed, 18 Dec 2024 10:31:35 -0500 Subject: [PATCH] rm signer from rec --- tests/gaps/downstream/tests__final_gaps_rec.sql | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/tests/gaps/downstream/tests__final_gaps_rec.sql b/tests/gaps/downstream/tests__final_gaps_rec.sql index 96e0cf0..0c16c72 100644 --- a/tests/gaps/downstream/tests__final_gaps_rec.sql +++ b/tests/gaps/downstream/tests__final_gaps_rec.sql @@ -7,8 +7,7 @@ WITH r_receipts AS ( SELECT DISTINCT receipt_id, - block_id, - predecessor_id AS signer_id + block_id FROM {{ ref('silver__streamline_receipts') }} @@ -24,8 +23,7 @@ WITH r_receipts AS ( f_receipts AS ( SELECT DISTINCT receipt_object_id AS receipt_id, - block_id, - receipt_actions :predecessor_id :: STRING AS signer_id + block_id FROM {{ ref('silver__streamline_receipts_final') }} @@ -40,8 +38,7 @@ f_receipts AS ( ) SELECT r_receipts.receipt_id AS receipt_id, - r_receipts.block_id, - r_receipts.signer_id + r_receipts.block_id FROM r_receipts LEFT JOIN