mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-22 14:00:14 -05:00
10 lines
223 B
Go
10 lines
223 B
Go
package modconfig
|
|
|
|
// ResolvedQuery contains the execute SQL, raw SQL and args string used to execute a query
|
|
type ResolvedQuery struct {
|
|
ExecuteSQL string
|
|
RawSQL string
|
|
Args []string
|
|
Params []*ParamDef
|
|
}
|