This commit is contained in:
bitspill 2023-11-06 09:59:51 +09:00 committed by GitHub
commit b73ae041c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 10 deletions

View File

@ -540,16 +540,16 @@ var optionSupportedSnowflakeTypes = map[reflect.Type]CommandOptionType{
}
var optionKindMap = map[reflect.Kind]CommandOptionType{
reflect.Int: NumberOptionType,
reflect.Int8: NumberOptionType,
reflect.Int16: NumberOptionType,
reflect.Int32: NumberOptionType,
reflect.Int64: NumberOptionType,
reflect.Uint: NumberOptionType,
reflect.Uint8: NumberOptionType,
reflect.Uint16: NumberOptionType,
reflect.Uint32: NumberOptionType,
reflect.Uint64: NumberOptionType,
reflect.Int: IntegerOptionType,
reflect.Int8: IntegerOptionType,
reflect.Int16: IntegerOptionType,
reflect.Int32: IntegerOptionType,
reflect.Int64: IntegerOptionType,
reflect.Uint: IntegerOptionType,
reflect.Uint8: IntegerOptionType,
reflect.Uint16: IntegerOptionType,
reflect.Uint32: IntegerOptionType,
reflect.Uint64: IntegerOptionType,
reflect.Float32: NumberOptionType,
reflect.Float64: NumberOptionType,
reflect.String: StringOptionType,