You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 4, 2024. It is now read-only.
There was an issue introduced in #73 in the updated segment_web_sessions model here where the comparison operator was flipped in the agg CTE for incremental materializations. The result is that session_number starts to get repeated for newly added sessions which we do not want.
Steps to reproduce
dbt run to MERGE to existing tables
check segment_web_sessions output and you will see new web sessions start counting from 1 instead of the last known session_number for each blended user ID
Expected results
session_number is incremented over a user's sessions
Actual results
duplicate session numbers for each user on incremental runs
installed version: 1.0.3
latest version: 1.0.3
Up to date!
Plugins:
- bigquery: 1.0.0 - Up to date!
- snowflake: 1.0.0 - Up to date!
- redshift: 1.0.0 - Up to date!
- postgres: 1.0.3 - Up to date!
The operating system you're using: MacOS
The output of python --version: Python 3.8.11
Additional context
Are you interested in contributing the fix?
The text was updated successfully, but these errors were encountered:
Describe the bug
There was an issue introduced in #73 in the updated
segment_web_sessions
model here where the comparison operator was flipped in theagg
CTE for incremental materializations. The result is thatsession_number
starts to get repeated for newly added sessions which we do not want.Steps to reproduce
Expected results
session_number is incremented over a user's sessions
Actual results
duplicate session numbers for each user on incremental runs
Screenshots and log output
System information
The contents of your
packages.yml
file:Which database are you using dbt with?
The output of
dbt --version
:The operating system you're using: MacOS
The output of
python --version
: Python 3.8.11Additional context
Are you interested in contributing the fix?
The text was updated successfully, but these errors were encountered: