Jackie-Jiang opened a new pull request, #11223: URL: https://github.com/apache/pinot/pull/11223
Another attempt of #11218 Apache Commons Configuration can already handle the string escape/unescape when writing/reading the property values, so there is no need to explicitly escape/unescape property values again. Currently 2 special character cannot be properly handled currently: leading/trailing space (will be trimmed) and comma (will be treated as list separator). In order to workaround this, we replace them with the preserved '\0' character which is not allowed in the string value, so it won't collide with the property values. - Leading space -> `"\0 "` - Trailing space -> `" \0"` - Comma -> `"\0\0"` This PR also fixes the invalid default null value so that it can be included in the metadata. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
