snowplow / dbt-snowplow-utils

Snowplow utility functions to be used in conjunction with the snowplow-web dbt package.
Other
12 stars 6 forks source link

Add support for nulls to `app_id_filter` #149

Closed rlh1994 closed 6 months ago

rlh1994 commented 11 months ago

Is your feature request related to a problem? Please describe.

Currently users can either include all app_ids, or we apply a filter based on values in a list. However null in (null, 'app1') returns null, not true.

Describe the solution you'd like

If null is a value in the list, we should allow (app_id in (...) or app_id is null) instead.

Describe alternatives you've considered

Not filtering and then adding it on events this run, but this is inefficient.

Additional context

Are you interested in contributing towards this feature?