Skip to content

Commit 42eb441

Browse files
committed
Split checks into stages
1 parent e644f17 commit 42eb441

File tree

99 files changed

+158
-156
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+158
-156
lines changed

flowetl/flowetl/flowetl/qa_checks/qa_checks/cell_info/new_cell_ids.sql

Lines changed: 0 additions & 5 deletions
This file was deleted.

flowetl/flowetl/flowetl/qa_checks/qa_checks/extract/.gitkeep

Whitespace-only changes.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
SELECT COALESCE(sum(n_dupes), 0) FROM
2+
(SELECT count(*) - 1 as n_dupes
3+
FROM {{ final_table }}
4+
GROUP BY
5+
msisdn,
6+
datetime,
7+
imsi,
8+
imei,
9+
tac,
10+
location_id,
11+
msisdn_counterpart,
12+
outgoing,
13+
duration,
14+
network,
15+
operator_code,
16+
country_code
17+
HAVING count(*) > 1) tableWithCount

0 commit comments

Comments
 (0)