(id int64, badType string)
| 689 | } |
| 690 | |
| 691 | func stringFormatError(id int64, badType string) error { |
| 692 | return newFormatError(id, "string clause can only be used on strings, bools, bytes, ints, doubles, maps, lists, types, durations, and timestamps, was given %s", badType) |
| 693 | } |
| 694 | |
| 695 | type formatError struct { |
| 696 | id int64 |
no test coverage detected