Skip to content

Commit

Permalink
Add missing qtags for sundeck (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
rymurr authored Aug 7, 2024
1 parent 8d1dead commit fa918f4
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
10 changes: 9 additions & 1 deletion go/pkg/qtag/declarations/sundeck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,13 @@ fields:
type: DIMENSION
- name: auto_routing_num_computed_signatures
type: TRACE
- name: lookup_routing_matched
type: DIMENSION
- name: lookup_routing_matched_warehouse
type: DIMENSION
- name: lookup_routing_num_computed_signatures
type: TRACE
- name: auto_routing_warehouse_pool
type: DIMENSION
type: DIMENSION
- name: query_id
type: TRACE
16 changes: 16 additions & 0 deletions go/pkg/qtag/generated.go
Original file line number Diff line number Diff line change
Expand Up @@ -488,6 +488,22 @@ func (c *Sundeck) AddAuto_routing_num_computed_signatures(value any) {
c.values["auto_routing_num_computed_signatures"] = value
}

func (c *Sundeck) AddLookup_routing_matched(value any) {
c.values["lookup_routing_matched"] = value
}

func (c *Sundeck) AddLookup_routing_matched_warehouse(value any) {
c.values["lookup_routing_matched_warehouse"] = value
}

func (c *Sundeck) AddLookup_routing_num_computed_signatures(value any) {
c.values["lookup_routing_num_computed_signatures"] = value
}

func (c *Sundeck) AddAuto_routing_warehouse_pool(value any) {
c.values["auto_routing_warehouse_pool"] = value
}

func (c *Sundeck) AddQuery_id(value any) {
c.values["query_id"] = value
}

0 comments on commit fa918f4

Please sign in to comment.