Skip to content

Commit

Permalink
feat(replays): Add _tags_hash_map column definitions (#6309)
Browse files Browse the repository at this point in the history
Exposes _tags_hash_map column. Follow the prior art established by the
errors table.

Related issue: getsentry/sentry#76289
Migration PR: #6308
  • Loading branch information
cmanallen authored Sep 19, 2024
1 parent 09f421d commit f2199a5
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions snuba/datasets/configuration/replays/entities/replays.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,15 @@ schema:
[{ name: key, type: String }, { name: value, type: String }],
},
},
{
name: _tags_hash_map,
type: Array,
args:
{
schema_modifiers: [readonly],
inner_type: { type: UInt, args: { size: 64 } },
},
},
{ name: click_node_id, type: UInt, args: { size: 32 } },
{ name: click_tag, type: String, args: {} },
{ name: click_id, type: String, args: {} },
Expand Down
9 changes: 9 additions & 0 deletions snuba/datasets/configuration/replays/storages/replays.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,15 @@ schema:
[{ name: key, type: String }, { name: value, type: String }],
},
},
{
name: _tags_hash_map,
type: Array,
args:
{
schema_modifiers: [readonly],
inner_type: { type: UInt, args: { size: 64 } },
},
},
{ name: click_node_id, type: UInt, args: { size: 32 } },
{
name: click_tag,
Expand Down

0 comments on commit f2199a5

Please sign in to comment.