You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Works because respository_full_name is a keycolumn, right?
If I pick an obviously unsupported operater I get a clue about which ones I can use.
./github_dump github_issue --select repository_full_name,url --where "repository_full_name regexp 'turbot/steampipe-plugin'" --config 'token="ghp_"'
failed to parse 'where' property: 1:22 (21): no match found, expected: "!=", "->", "<", "<=", "<>", "=", ">", ">=", "and"i, "ilike"i, "in"i, "is"i, "like"i, "not"i, "or"i, [ \n\t\r] or EOF
It says I can use like and ilike but:
./github_dump github_issue --select repository_full_name,url --where "repository_full_name like '%turbot/steampipe-plugin%'" --config 'token="ghp_"'
failed to convert 'where' arg to qual
The text was updated successfully, but these errors were encountered:
./github_dump github_issue --select repository_full_name,url --where "repository_full_name = 'turbot/steampipe-plugin-github'" --config 'token="ghp_..."'
Works because
respository_full_name
is a keycolumn, right?If I pick an obviously unsupported operater I get a clue about which ones I can use.
It says I can use
like
andilike
but:The text was updated successfully, but these errors were encountered: