mirror of
https://github.com/fumiama/terasu-cloudflared.git
synced 2026-06-05 09:00:23 +08: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
|
|
}
|