mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 09:02:00 +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
|
|
}
|