Skip to content

Commit

Permalink
feat(inc984): make mutation condition simpler (#6669)
Browse files Browse the repository at this point in the history
We don't need to check this, just rewrite the column
  • Loading branch information
volokluev authored Dec 13, 2024
1 parent 5ba1ef5 commit a20ab86
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion snuba/manual_jobs/scrub_ips_from_spans.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ def _get_query(self, cluster_name: str | None) -> str:
{on_cluster}
UPDATE `sentry_tags.value` = arrayMap((k, v) -> if(k = 'user.ip', 'scrubbed', v), `sentry_tags.key`, `sentry_tags.value`)
WHERE project_id IN [{project_ids}]
AND has(`sentry_tags.key`, 'user.ip')
AND end_timestamp > toDateTime('{start_datetime}')
AND end_timestamp <= toDateTime('{end_datetime}')"""

Expand Down
2 changes: 0 additions & 2 deletions tests/manual_jobs/test_scrub_ips_from_spans.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ def test_generate_query() -> None:
UPDATE `sentry_tags.value` = arrayMap((k, v) -> if(k = 'user.ip', 'scrubbed', v), `sentry_tags.key`, `sentry_tags.value`)
WHERE project_id IN [1,3,5,6]
AND has(`sentry_tags.key`, 'user.ip')
AND end_timestamp > toDateTime('2024-12-01T00:00:00')
AND end_timestamp <= toDateTime('2024-12-10T00:00:00')"""
)
Expand All @@ -98,7 +97,6 @@ def test_generate_query() -> None:
ON CLUSTER 'snuba-spans'
UPDATE `sentry_tags.value` = arrayMap((k, v) -> if(k = 'user.ip', 'scrubbed', v), `sentry_tags.key`, `sentry_tags.value`)
WHERE project_id IN [1,3,5,6]
AND has(`sentry_tags.key`, 'user.ip')
AND end_timestamp > toDateTime('2024-12-01T00:00:00')
AND end_timestamp <= toDateTime('2024-12-10T00:00:00')"""
)

0 comments on commit a20ab86

Please sign in to comment.