Add function to clear connection cache. Closes #3937

* Add function to clear connection cache. 
* Update FDW to v1.9.0 - Add ability to clear connection cache by inserting into settings table.
* Update plugin sdk to v5.6.1
* fix listen unit tests
This commit is contained in:
kaidaguerre
2023-09-29 19:48:17 +01:00
committed by GitHub
parent e9b0a0a2b8
commit 4fa11a424e
11 changed files with 35 additions and 23 deletions

View File

@@ -111,7 +111,7 @@ func (c *InteractiveClient) readInitDataStream(ctx context.Context) {
statushooks.SetStatus(ctx, "Load plugin schemas…")
// fetch the schema
// TODO make this async https://github.com/turbot/steampipe/issues/3400
// NOTE: we would like to do this asyncronously, but we are currently limited to a single Db conneciton in our
// NOTE: we would like to do this asyncronously, but we are currently limited to a single Db connection in our
// as the client cache settings are set per connection so we rely on only having a single connection
// This means that the schema load would block other queries anyway so there is no benefit right not in making asyncronous