Skip to content

Commit c646b91

Browse files
committed
Split checks into stages
1 parent e644f17 commit c646b91

File tree

100 files changed

+174
-160
lines changed

Some content is hidden

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

100 files changed

+174
-160
lines changed

flowetl/flowetl/MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ include versioneer.py
22
include flowetl/_version.py
33
include flowetl/qa_checks/*/*
44
include flowetl/qa_checks/*/*/*
5+
include flowetl/qa_checks/*/*/*/*

flowetl/flowetl/flowetl/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)