From 6fa3f0c2a03fdc66ab59f636f0fa828de6fb8b9a Mon Sep 17 00:00:00 2001 From: Flook Peter Date: Tue, 9 Jul 2024 13:55:09 +0800 Subject: [PATCH] Use account_number instead of account_id for insta-integration validations --- insta-integration.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/insta-integration.yaml b/insta-integration.yaml index 286a2da..84038e6 100644 --- a/insta-integration.yaml +++ b/insta-integration.yaml @@ -14,13 +14,13 @@ run: - options: dbtable: account.balances validations: - - expr: ISNOTNULL(account_id) + - expr: ISNOTNULL(account_number) - aggType: count aggExpr: count == 1000 - options: dbtable: account.transactions validations: - - expr: ISNOTNULL(account_id) + - expr: ISNOTNULL(account_number) - aggType: count aggExpr: count == 5000 - groupByCols: [account_number]