AMashenkov commented on code in PR #10579:
URL: https://github.com/apache/ignite/pull/10579#discussion_r1131525741
##########
modules/core/src/test/java/org/apache/ignite/internal/processors/odbc/SqlListenerUtilsTest.java:
##########
@@ -48,6 +48,9 @@ public void translateWildchar() {
check(".ome", "_ome");
check("so_e", "so\\_e");
+ check("so__e", "so\\_\\_e");
+ check("so__e___f", "so\\_\\_e\\_\\_\\_f");
Review Comment:
Let's also check other series works well
```
some\\\\_\\\\_table -> some\\.\\.table
some\\\\\\_\\\\\\_table -> some\\_\\_table
```
--
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]