Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing qtags for sundeck #21

Merged
merged 1 commit into from
Aug 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
}
Loading