alamb commented on code in PR #17181: URL: https://github.com/apache/datafusion/pull/17181#discussion_r2274562240
########## datafusion/sqllogictest/src/engines/conversion.rs: ########## @@ -35,7 +35,7 @@ pub(crate) fn varchar_to_str(value: &str) -> String { if value.is_empty() { "(empty)".to_string() } else { - value.trim_end_matches('\n').to_string() + value.trim_end_matches('\n').replace("\u{0000}", "\\0") Review Comment: ```suggestion // Escape nulls so that github renders them correctly in the webui value.trim_end_matches('\n').replace("\u{0000}", "\\0") ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org