Shai Coleman
Shai Coleman
table_print is designed to print an array of hashes, so should be: ``` foo = [{'bar'=> 'baz', 'bat'=> 'bit'}] ```
If steampipe would listen to a random local socket on each execution instead of a network port, this wouldn't happen. This will also solve #4155
I think steampipe should listen to a random local socket on each execution by default for standalone queries. This solves a few issues: * Allows concurrent execution * Each execution...
I'm having issues testing that branch with the instructions above: ``` $ steampipe -v Steampipe v0.22.1 $ go version go version go1.22.1 linux/amd64 $ rm -rf ~/.steampipe $ git clone...
I can't get it to run: * `aws_cost_by_service_daily` doesn't have a `search_start_time` field. The date filters should be applicable to all relevant tables. ```sql SELECT service, unblended_cost_amount, period_start, period_end FROM...
It seems that there's an issue returning empty cached results when repeating the same query and changing the date filters. e.g. the first query will return results correctly: ```sql select...
Hi, It doesn't filter correctly the following query: ```sql SELECT service, unblended_cost_amount, period_start, period_end FROM aws_cost_by_service_daily WHERE search_start_time >= current_timestamp - interval '30d' AND service = 'Tax' ``` It requests...
Looks good to me! Thanks
I found a build script for Ubuntu/Debian here: https://github.com/ValiMail/OpenARCDev/blob/master/bootstrap.sh Here are the relevant commands to build (tested on Ubuntu 20.04): ``` sudo apt-get install -yy make automake pkg-config libtool m4...
Again the main issue is that there is no way to specify some parameters during the creation, e.g. `eb create testenv --rolling-update-policy=all_at_once` If that was possible, then it wouldn't violate...