dbt - Project Organization
Given this dbt model SQL for source table
products:
select id, name from {{ source('inventory', 'products') }}
What will be the output if the source table has 3 rows with ids 1, 2, 3?