Skip to content

Commit

Permalink
Snowflake web: Fix varchar length for pseudonymized fields (Close #122)
Browse files Browse the repository at this point in the history
  • Loading branch information
agnessnowplow committed Feb 18, 2022
1 parent 01b138f commit 19ec98d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ AS (
CREATE TABLE IF NOT EXISTS {{.output_schema}}.base_session_id_manifest{{.entropy}}
AS (
SELECT
'seed'::VARCHAR(36) AS session_id,
'seed'::VARCHAR(128) AS session_id,
'{{.start_date}}'::TIMESTAMP_NTZ AS min_tstamp
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ INSERT INTO {{.scratch_schema}}.users_metadata_this_run{{.entropy}} (
CREATE TABLE IF NOT EXISTS {{.output_schema}}.users_manifest{{.entropy}}
AS (
SELECT
'seed'::VARCHAR(36) AS domain_userid,
'seed'::VARCHAR(128) AS domain_userid,
'1970-01-01'::TIMESTAMP_NTZ AS start_tstamp
);

Expand Down

0 comments on commit 19ec98d

Please sign in to comment.