ClickHouse/programs/diagnostics/internal/platform/data/field.go

9 lines
154 B
Go
Raw Normal View History

2022-04-27 12:22:20 +00:00
package data
type Field struct {
// Name of the field
Name string
// A list of fields that must implement FieldType interface
Values []interface{}
}