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

qual error for tables that have required KeyColumns in ListConfig #3

Closed
johnsmyth opened this issue Jan 27, 2021 · 3 comments
Closed
Assignees
Labels
bug Something isn't working quals

Comments

@johnsmyth
Copy link
Contributor


select repository_full_name, issue_number from github_repository_issue where repository_full_name = 'turbot/steampipe' or  repository_full_name = 'turbot/steampipe-plugin-sdk'
Error: pq: rpc error: code = Internal desc = 'List' call requires an '=' qual for column: repository_full_name
@johnsmyth johnsmyth added the bug Something isn't working label Jan 27, 2021
@johnsmyth
Copy link
Contributor Author

this also doesnt work:

  r.full_name,
  i.issue_number 
from 
  github_repository as r, 
  github_repository_issue as i
where r.full_name = i.repository_full_name
and r.full_name like 'turbot/%'
Error: pq: cannot iterate: there was an error executing scanIterator: rpc error: code = Internal desc = 'List' call requires an '=' qual for column: repository_full_name
> 

@johnsmyth
Copy link
Contributor Author

this also doesn't work:

> select
  issue_number 
from 
  github_repository_issue
where
  repository_full_name in (
    select 
      full_name
    from 
      github_repository
    where full_name like 'turbot/%'
  )

Error: pq: rpc error: code = Internal desc = 'List' call requires an '=' qual for column: repository_full_name

@johnsmyth
Copy link
Contributor Author

These items were either fixed in the plugin, fixed in the FDW, or have workarounds, and the examples given will no longer work due to plugin changes anyway

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working quals
Projects
None yet
Development

No branches or pull requests

2 participants