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

Remove redundant Span in QueryJobInfo #88567

Merged
merged 1 commit into from
Sep 2, 2021
Merged

Commits on Sep 1, 2021

  1. Remove redundant Span in QueryJobInfo

    Previously, `QueryJobInfo` was composed of two parts: a `QueryInfo` and
    a `QueryJob`. However, both `QueryInfo` and `QueryJob` have a `span`
    field, which seem to be the same. So, the `span` was recorded twice.
    
    Now, `QueryJobInfo` is composed of a `QueryStackFrame` (the other field
    of `QueryInfo`) and a `QueryJob`. So, now, the `span` is only recorded
    once.
    camelid committed Sep 1, 2021
    Configuration menu
    Copy the full SHA
    4553a4b View commit details
    Browse the repository at this point in the history