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

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

Closed
e-gineer opened this issue Aug 11, 2021 · 0 comments
Closed

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

e-gineer opened this issue Aug 11, 2021 · 0 comments
Labels
enhancement New feature or request

Comments

@e-gineer
Copy link
Contributor

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
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant