| 193 | } |
| 194 | |
| 195 | String convertFieldToString(const Field & field) |
| 196 | { |
| 197 | if (field.getType() == Field::Types::Which::String) |
| 198 | return field.safeGet<String>(); |
| 199 | return applyVisitor(FieldVisitorToString(), field); |
| 200 | } |
| 201 | |
| 202 | } |
no test coverage detected