| 104 | } |
| 105 | |
| 106 | static std::string entryToStringWithPos(sel_t pos, ValueVector* vector) { |
| 107 | if (vector->isNull(pos)) { |
| 108 | return ""; |
| 109 | } |
| 110 | return TypeUtils::entryToString(vector->dataType, |
| 111 | vector->getData() + vector->getNumBytesPerValue() * pos, vector); |
| 112 | } |
| 113 | |
| 114 | template<> |
| 115 | std::string TypeUtils::toString(const int128_t& val, void* /*valueVector*/) { |
no test coverage detected