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
DISCLAIMER
I have not clearly identified whether this issue is related to the AWS plugin or the Steampipe engine. If this issue has already been reported or if it is a plugin-level problem, please let me know.
Describe the bug
As stated in the title, a segmentation violation occurs when using the ||(concat) operator in the on clause of a join.
Steampipe version (steampipe -v)
v0.23.2
To reproduce
selectfn.name function_name,
lg.retention_in_days log_retention
from aws_lambda_function fn
left join aws_cloudwatch_log_group lg onlg.name='/aws/lambda/%s'||fn.nameorder by function_name;
Additional context
It works without any issues if I use format instead of ||(concat) as follows.
selectfn.name function_name,
lg.retention_in_days log_retention
from aws_lambda_function fn
left join aws_cloudwatch_log_group lg onlg.name= format('/aws/lambda/%s', fn.name)
order by function_name;
I spent some time troubleshooting this, so I hope this information helps anyone experiencing the same issue.
The text was updated successfully, but these errors were encountered:
DISCLAIMER
I have not clearly identified whether this issue is related to the AWS plugin or the Steampipe engine. If this issue has already been reported or if it is a plugin-level problem, please let me know.
Describe the bug
As stated in the title, a segmentation violation occurs when using the
||
(concat) operator in the on clause of a join.Steampipe version (
steampipe -v
)v0.23.2
To reproduce
Expected behavior
return without error
Actual behavior
The following error occurs:
log
Additional context
It works without any issues if I use
format
instead of||
(concat) as follows.I spent some time troubleshooting this, so I hope this information helps anyone experiencing the same issue.
The text was updated successfully, but these errors were encountered: