sdk: Fix fmt + add FieldType test (#19493)

* sdk: Fix fmt + add FieldType test

* Add test comment
This commit is contained in:
Tom Proctor
2023-03-10 18:07:48 +00:00
committed by GitHub
parent 5d20d598c3
commit ea33318b4b
3 changed files with 28 additions and 1 deletions

View File

@@ -753,7 +753,7 @@ func (t FieldType) Zero() interface{} {
case TypeInt:
return 0
case TypeInt64:
return int64(0)
return int64(0)
case TypeBool:
return false
case TypeMap: