ClickHouse/programs/diagnostics/internal/platform/data/field.go
2022-07-01 11:43:07 +02: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{}
}