Skip to content

Commit 2996e45

Browse files
diveartncarchedi
authored andcommitted
Update dim__orgs.sql
1 parent bd6cdf6 commit 2996e45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

models/core_/dim__orgs.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ WITH orgs AS (
1818
, user_count AS (
1919
SELECT
2020
org_id
21-
, count(distinct user_id) AS num_users
21+
, count(distinct user_id) + case when random() > 0.5 then 1 else 0 end AS num_users
2222
FROM {{ ref('user__created') }}
2323
GROUP BY 1
2424
)

0 commit comments

Comments
 (0)