mirror of
https://github.com/turbot/steampipe.git
synced 2025-12-19 18:12:43 -05:00
10 lines
299 B
Go
10 lines
299 B
Go
package db_client
|
|
|
|
type ScanMetadataRow struct {
|
|
// the fields of this struct need to be public since these are populated by pgx using RowsToStruct
|
|
Id int64 `db:"id"`
|
|
RowsFetched int64 `db:"rows_fetched"`
|
|
CacheHit bool `db:"cache_hit"`
|
|
HydrateCalls int64 `db:"hydrate_calls"`
|
|
}
|