mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-12 10:56:35 +00:00
22 lines
283 B
Go
22 lines
283 B
Go
package clickhouse
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
func Array(v interface{}) interface{} {
|
|
return v
|
|
}
|
|
|
|
func ArrayFixedString(len int, v interface{}) interface{} {
|
|
return v
|
|
}
|
|
|
|
func ArrayDate(v []time.Time) interface{} {
|
|
return v
|
|
}
|
|
|
|
func ArrayDateTime(v []time.Time) interface{} {
|
|
return v
|
|
}
|