Results 70 issues of Jon Udell

To reproduce, try this in both Steampipe dashboard (the link is hot) and Powerpipe (it isn't). ``` dashboard "category_test" { graph { node "test" { category = category.jon sql =

bug

This value comes from JavaScript. ``` table { sql =

bug
stale

When I add `connection_name` as a common dimension, I can get different orderings of common dimensions across controls. Ideally it would always be the same, and would be the order...

enhancement
stale

When I have a couple of local pipelines and dozens of imported ones, I'd like an easy way to review the local ones.

enhancement
stale

# Example query results Results ``` Add example SQL query results here (please include the input queries as well) ```

These are seemingly identical. ``` with repos(full_name) as ( values ('turbot/steampipe-plugin-github') ) select * from repos +--------------------------------+ | full_name | +--------------------------------+ | turbot/steampipe-plugin-github | +--------------------------------+ ``` ``` with repos as...

bug

The query below will reliably fail, in the `matches` CTE, like so: ``` 2022/02/23 11:42:41 [INFO] Log level WARN fatal error: unexpected signal during runtime execution [signal SIGSEGV: segmentation violation...

bug

For the Twitter plugin we give two examples of ways to convert a `username` to the required `user_id`. ## 1. id via subselect ``` select id, text from twitter_user_tweet as...

Query 1 is fast. ``` select title from aws_iam_policy where title = 'IAMFullAccess' +---------------+ | title | +---------------+ | IAMFullAccess | +---------------+ Time: 254.027107ms ``` Query 2 is slow. ```...

Using the googlesheets plugin, I have a tab in a sheet with data in just two cells, a1:a2, and a named range that captures both. The `range` column populates if...