We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d25d707 commit 6321220Copy full SHA for 6321220
cpp/src/arrow/json/test_common.h
@@ -267,7 +267,10 @@ static inline std::string PrettyPrint(string_view one_line) {
267
if (result.error()) {
268
return std::string(one_line);
269
}
270
- return simdjson::prettify(result.value());
+ // simdjson doesn't have a built-in prettify function, so we output as-is
271
+ std::ostringstream ss;
272
+ ss << result.value();
273
+ return ss.str();
274
275
276
template <typename T>
0 commit comments