mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-28 18:42:26 +00:00
9 lines
154 B
Go
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{}
|
|
}
|