| 199 | } |
| 200 | |
| 201 | static std::string getMapEntryStr(sel_t pos, ValueVector* dataVector, ValueVector* keyVector, |
| 202 | ValueVector* valVector) { |
| 203 | if (dataVector->isNull(pos)) { |
| 204 | return ""; |
| 205 | } |
| 206 | return entryToStringWithPos(pos, keyVector) + "=" + entryToStringWithPos(pos, valVector); |
| 207 | } |
| 208 | |
| 209 | template<> |
| 210 | std::string TypeUtils::toString(const map_entry_t& val, void* valueVector) { |
no test coverage detected