mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 05:22:17 +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{}
|
||
|
}
|