Skip to content

Commit 2f70a0e

Browse files
committed
Remove version have docu audit
1 parent 665593b commit 2f70a0e

File tree

1 file changed

+0
-23
lines changed

1 file changed

+0
-23
lines changed

audits/bill.sql

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -86,26 +86,3 @@ WITH bill_version_exploded AS (
8686
SELECT * FROM bill_version_exploded
8787
WHERE version.links IS NULL
8888
OR len(version.links) < 1;
89-
90-
-- all bill versions have a source document
91-
AUDIT (
92-
name assert_bill_versions_have_source_document,
93-
blocking false
94-
);
95-
WITH bill_version_exploded AS (
96-
SELECT
97-
unnest(versions) AS version
98-
FROM
99-
scraper.bill
100-
),
101-
bill_version_links AS (
102-
SELECT
103-
unnest(version.links) AS link
104-
FROM
105-
bill_version_exploded
106-
)
107-
SELECT *
108-
FROM bill_version_links
109-
WHERE
110-
link.url IS NULL
111-
OR link.media_type IS NULL;

0 commit comments

Comments
 (0)