Skip to content

Commit

Permalink
fix primary key
Browse files Browse the repository at this point in the history
  • Loading branch information
jlloyd-widen committed Mar 8, 2024
1 parent 9435092 commit 6238a4f
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions tap_clari/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,7 @@ def __init__(self, tap, forecast_id: str):
)
self.forecast_id = forecast_id

primary_keys: t.ClassVar[list[str]] = [
"fieldId",
"timeFrameId",
"timePeriodId",
"userId",
]
primary_keys: t.ClassVar[list[str]] = ["entries"]
replication_key = None
schema = th.PropertiesList(
th.Property("entries", th.ArrayType(th.ObjectType(
Expand Down

0 comments on commit 6238a4f

Please sign in to comment.