We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 665593b commit 2f70a0eCopy full SHA for 2f70a0e
audits/bill.sql
@@ -86,26 +86,3 @@ WITH bill_version_exploded AS (
86
SELECT * FROM bill_version_exploded
87
WHERE version.links IS NULL
88
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
103
- unnest(version.links) AS link
104
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