We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've set up my customer_stream according Activity Schema spec V2. I tried a basic funnel to start:
customer_stream
with dataset_cte as ( {{ dbt_activity_schema.dataset( activity_stream = ref("customer_stream"), primary_activity = dbt_activity_schema.activity( dbt_activity_schema.all_ever(), "opened_email"), appended_activities = [ dbt_activity_schema.activity( dbt_activity_schema.first_after(), "deposited_payroll"), dbt_activity_schema.activity( dbt_activity_schema.first_after(), "visited_points_tab"), ] ) }} ) select * from dataset_cte
And getting this error at this line in the compiled sql:
It looks like BigQuery's safe_cast function does not like casting json to string at all, so we might need a different approach:
safe_cast
The text was updated successfully, but these errors were encountered:
@kennyning-current Would you mind taking a look at #26 for context, and perhaps open a PR to solve this for the BQ case?
Sorry, something went wrong.
kennyning-current
No branches or pull requests
I've set up my
customer_stream
according Activity Schema spec V2. I tried a basic funnel to start:And getting this error at this line in the compiled sql:
It looks like BigQuery's
safe_cast
function does not like casting json to string at all, so we might need a different approach:The text was updated successfully, but these errors were encountered: