Skip to content

Commit

Permalink
Fix error in query
Browse files Browse the repository at this point in the history
  • Loading branch information
maplant committed Aug 8, 2023
1 parent 3c8fb99 commit 4223a4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mobile_verifier/src/heartbeats.rs
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ impl Heartbeat {
INSERT INTO heartbeats (cbsd_id, hotspot_key, cell_type, latest_timestamp, truncated_timestamp, coverage_object)
VALUES ($1, $2, $3, $4, $5, $6)
ON CONFLICT (cbsd_id, truncated_timestamp) DO UPDATE SET
latest_timestamp = EXCLUDED.latest_timestamp
latest_timestamp = EXCLUDED.latest_timestamp,
coverage_object = EXCLUDED.coverage_object
RETURNING (xmax = 0) as inserted
"#
Expand Down

0 comments on commit 4223a4c

Please sign in to comment.