We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If I execute a query against a remote Postgres endpoint (in this case a Pipes workspace) with .timing on enabled, you always get Rows returned: 0..
.timing on
Rows returned: 0.
I did steampipe login to log in to pipes, then .timing on.
steampipe login
Empty, 0 expected:
> select region from aws_acm_certificate; +--------+ | region | +--------+ +--------+ Time: 205ms. Rows returned: 0.
Non-zero, 5 expected:
> select region from aws_s3_bucket limit 5; +-----------+ | region | +-----------+ | us-east-2 | | us-east-2 | | us-east-2 | | us-east-2 | | us-east-2 | +-----------+ Time: 186ms. Rows returned: 0.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If I execute a query against a remote Postgres endpoint (in this case a Pipes workspace) with
.timing on
enabled, you always getRows returned: 0.
.I did
steampipe login
to log in to pipes, then.timing on
.Empty, 0 expected:
Non-zero, 5 expected:
The text was updated successfully, but these errors were encountered: