mirror of
https://github.com/turbot/steampipe.git
synced 2025-12-20 02:20:57 -05:00
- Execute RefreshConnections asyncronously - Add connection_state table to indicate the loading state of connections - Optimise RefreshConnections by cloning connection schemas - Add locking to ensure only a single instance of RefreshConnections runs - Start executing queries without waiting for connections to load, add smart error handling to wait for required connection - Optimise autocomplete for high connection count - Autocomplete and inspect data available before all conections are refreshed - Update file watcher to respond to CHMOD, so thaat it pickes up deletion of file contents Closes #3394 Closes #3267
11 lines
185 B
Go
11 lines
185 B
Go
package db_common
|
|
|
|
// SQLFunction is a struct for an sqlFunc
|
|
type SQLFunction struct {
|
|
Name string
|
|
Params map[string]string
|
|
Returns string
|
|
Body string
|
|
Language string
|
|
}
|