mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/yunionio/cloudpods.git
synced 2026-09-20 08:03:53 +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
|
|
}
|