Skip to content

Commit

Permalink
Fix SQL
Browse files Browse the repository at this point in the history
  • Loading branch information
tunetheweb committed May 20, 2024
1 parent 82c715f commit 64f8794
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sql/2022/privacy/most_common_purposes_for_iab_tcf_v2.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
# https://stackoverflow.com/a/65054751/7391782
# Warning: fails if there are colons in the keys/values, but these are not expected

CREATE TEMPORARY FUNCTION ExtractKeyValuePairs(input STRING) RETURNS ARRAY < STRUCT <
CREATE TEMPORARY FUNCTION ExtractKeyValuePairs(input STRING) RETURNS ARRAY<STRUCT<
key STRING,
value STRING
> > AS (
>> AS (
(
SELECT
ARRAY(
Expand Down

0 comments on commit 64f8794

Please sign in to comment.