add vendoring with go dep

This commit is contained in:
Adrian Todorov
2017-10-25 20:52:40 +00:00
parent 704f4d20d1
commit a59409f16b
1627 changed files with 489673 additions and 0 deletions

41
vendor/github.com/influxdata/influxdb/influxql/cast.go generated vendored Normal file
View File

@@ -0,0 +1,41 @@
package influxql
func castToFloat(v interface{}) float64 {
switch v := v.(type) {
case float64:
return v
case int64:
return float64(v)
default:
return float64(0)
}
}
func castToInteger(v interface{}) int64 {
switch v := v.(type) {
case float64:
return int64(v)
case int64:
return v
default:
return int64(0)
}
}
func castToString(v interface{}) string {
switch v := v.(type) {
case string:
return v
default:
return ""
}
}
func castToBoolean(v interface{}) bool {
switch v := v.(type) {
case bool:
return v
default:
return false
}
}