Skip to content

Commit

Permalink
test adding a column to python model
Browse files Browse the repository at this point in the history
  • Loading branch information
atvaccaro committed Mar 28, 2023
1 parent 38ebd78 commit a07e455
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
def model(dbt, session):
df = (
dbt.ref("fct_vehicle_locations")
.select("key", "vehicle_trip_key", "location")
.select("key", "vehicle_trip_key", "location", "next_location_key")
.where("dt = '2023-03-01'")
)
return df

0 comments on commit a07e455

Please sign in to comment.