in azkustodata/value/value.go [142:167]
func Default(t types.Column) Kusto {
switch t {
case types.Bool:
return NewNullBool()
case types.Int:
return NewNullInt()
case types.Long:
return NewNullLong()
case types.Real:
return NewNullReal()
case types.Decimal:
return NewNullDecimal()
case types.String:
return NewString("")
case types.Dynamic:
return NewNullDynamic()
case types.DateTime:
return NewNullDateTime()
case types.Timespan:
return NewNullTimespan()
case types.GUID:
return NewNullGUID()
default:
return nil
}
}