mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-28 18:42:26 +00:00
12 lines
151 B
Go
12 lines
151 B
Go
|
package data
|
||
|
|
||
|
type BaseFrame struct {
|
||
|
Name string
|
||
|
}
|
||
|
|
||
|
type Frame interface {
|
||
|
Next() ([]interface{}, bool, error)
|
||
|
Columns() []string
|
||
|
Name() string
|
||
|
}
|