hlgp opened a new issue, #3367: URL: https://github.com/apache/accumulo/issues/3367
**Describe the bug** If any part of the key has something like a null character separator, we used to be able to scan without escaping in Accumulo 1, but now we have to in Accumulo 2. e.g. for a composite edge key: apple\x00banana In Accumulo 1 we used to be able to run: `'scan -r apple\x00banana' ` but now in Accumulo 2 we have to add a slash: `'scan -r apple\\x00banana'` We have a variety of scripts we'd need to update to handle this. It is also not backwards compatible i.e. if we try to scan Accumulo 1.* with the extra slash, we get nothing. We were wondering if it was intentional. **To Reproduce** Create a row with a null separator in the rowid and scan. **Expected behavior** We would expect to be able to scan the same way between Accumulo 1 and 2. -- 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: notifications-unsubscr...@accumulo.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org