Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
"user_id": "user_id",
"ts": "ts"
},
"startPartition": "2023-11-01",
"startPartition": "2023-11-30",
"timeColumn": "ts"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@
"user_id": "user_id",
"ts": "ts"
},
"startPartition": "2023-11-30",
"timeColumn": "ts",
"partitionColumn": "notds"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
"user_id": "user_id",
"ts": "ts"
},
"startPartition": "2023-11-01",
"startPartition": "2023-11-30",
"timeColumn": "ts"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@
"user_id": "user_id",
"ts": "ts"
},
"startPartition": "2023-11-30",
"timeColumn": "ts",
"partitionColumn": "notds"
}
Expand Down
3 changes: 2 additions & 1 deletion api/python/test/canary/joins/gcp/training_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
selects=selects(
"user_id"
), # The primary key used to join various GroupBys together
start_partition="2023-11-01",
start_partition="2023-11-30",
time_column="ts",
), # The event time used to compute feature values as-of
)
Expand Down Expand Up @@ -47,6 +47,7 @@
"user_id"
), # The primary key used to join various GroupBys together
time_column="ts",
start_partition="2023-11-30",
partition_column="notds"
), # The event time used to compute feature values as-of
)
Expand Down
Loading