Skip to content

Error "call is missing required quals" should include table name #166

Closed

Description

When I use multiple tables in a join, the "call is missing required quals" error should specify which table the error applies to so the user can determine the actual cause of the error.

For example ... which table is failing here?

> select
  *
from
  fastly_service_version as v,
  fastly_acl as acl,
  fastly_acl_entry as e
where
  acl.service_id = v.service_id
  and acl.service_version = v.number
  and e.service_id = v.service_id
  and e.acl_id = acl.id
Error: rpc error: code = Internal desc = 'List' call is missing required quals: 
column:'service_id' operator: =
column:'service_version' operator: =
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions