|
7 | 7 | WHERE |
8 | 8 | memberId != '' |
9 | 9 | AND segmentId = (SELECT segmentId FROM segments_filtered) |
10 | | - AND channel NOT IN (SELECT channel FROM repos_to_channels(excluded = True)) |
| 10 | + AND channel NOT IN (SELECT channel FROM repos_to_channels_excluded) |
11 | 11 | {% if defined(repos) %} AND channel IN (SELECT channel FROM repos_to_channels) {% end %} |
12 | 12 | {% if defined(endDate) %} |
13 | 13 | AND timestamp >= toStartOfQuarter( |
|
30 | 30 | SELECT segmentId, groupUniqArray(memberId) AS currentQuarterMembers |
31 | 31 | FROM activityRelations_deduplicated_cleaned_bucket_union |
32 | 32 | WHERE |
33 | | - memberId != '' AND channel NOT IN (SELECT channel FROM repos_to_channels(excluded = True)) |
| 33 | + memberId != '' AND channel NOT IN (SELECT channel FROM repos_to_channels_excluded) |
34 | 34 | {% if defined(endDate) %} |
35 | 35 | AND timestamp >= toStartOfQuarter( |
36 | 36 | parseDateTimeBestEffort( |
|
59 | 59 | WHERE |
60 | 60 | memberId != '' |
61 | 61 | AND segmentId = (SELECT segmentId FROM segments_filtered) |
62 | | - AND channel NOT IN (SELECT channel FROM repos_to_channels(excluded = True)) |
| 62 | + AND channel NOT IN (SELECT channel FROM repos_to_channels_excluded) |
63 | 63 | {% if defined(endDate) %} |
64 | 64 | AND timestamp >= toStartOfQuarter( |
65 | 65 | parseDateTimeBestEffort( |
|
82 | 82 | SELECT segmentId, groupUniqArray(memberId) AS previousQuarterMembers |
83 | 83 | FROM activityRelations_deduplicated_cleaned_bucket_union |
84 | 84 | WHERE |
85 | | - memberId != '' AND channel NOT IN (SELECT channel FROM repos_to_channels(excluded = True)) |
| 85 | + memberId != '' AND channel NOT IN (SELECT channel FROM repos_to_channels_excluded) |
86 | 86 | {% if defined(endDate) %} |
87 | 87 | AND timestamp >= toStartOfQuarter( |
88 | 88 | parseDateTimeBestEffort( |
|
0 commit comments