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 bd6cdf6 commit 2996e45Copy full SHA for 2996e45
models/core_/dim__orgs.sql
@@ -18,7 +18,7 @@ WITH orgs AS (
18
, user_count AS (
19
SELECT
20
org_id
21
- , count(distinct user_id) AS num_users
+ , count(distinct user_id) + case when random() > 0.5 then 1 else 0 end AS num_users
22
FROM {{ ref('user__created') }}
23
GROUP BY 1
24
)
0 commit comments