mirror of
https://github.com/turbot/steampipe.git
synced 2025-12-19 09:58:53 -05:00
* Add test for #4797: executeQueries doesn't check for nil Client This test demonstrates that executeQueries panics with a nil pointer dereference when Client is nil. The test currently fails with: panic: runtime error: invalid memory address or nil pointer dereference 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * Fix #4797: Add nil check for Client in executeQueries Added a nil check at the start of executeQueries to prevent nil pointer panics when Client is not initialized. Now returns an error message and counts all queries as failures instead of crashing. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> --------- Co-authored-by: Claude <noreply@anthropic.com>