ClickHouse/tools/clickhouse-diagnostics/internal/platform/data/field.go
2022-04-27 13:22:20 +01:00

9 lines
154 B
Go

package data
type Field struct {
// Name of the field
Name string
// A list of fields that must implement FieldType interface
Values []interface{}
}