Skip to content

Commit

Permalink
added Uint256
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey_pugach committed Jul 6, 2022
1 parent 0591d22 commit 245ea8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dataparser.go
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ func newDataParser(t *TypeDesc, unquote bool, opt *DataParserOptions) (DataParse
return &floatParser{32}, nil
case "Float64":
return &floatParser{64}, nil
case "Decimal", "String", "Enum8", "Enum16", "UUID", "IPv4", "IPv6":
case "Decimal", "UInt256", "String", "Enum8", "Enum16", "UUID", "IPv4", "IPv6":
return &stringParser{unquote: unquote}, nil
case "FixedString":
if len(t.Args) != 1 {
Expand Down

0 comments on commit 245ea8e

Please sign in to comment.