nizhikov commented on a change in pull request #8821:
URL: https://github.com/apache/ignite/pull/8821#discussion_r581866801
##########
File path:
modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/sql/GridSqlStatement.java
##########
@@ -67,4 +73,19 @@ public void limit(GridSqlAst limit) {
public GridSqlAst limit() {
return limit;
}
+
+ /**
+ * @return Delimeter to use.
+ */
+ public static char delimeter() {
Review comment:
No.
If `INCLUDE_SENSITIVE == true` then we just use query text that came from
user. Please, take a look into IgniteH2Indexing line 715
```
Long qryId = runningQryMgr.register(
QueryUtils.INCLUDE_SENSITIVE ? qry :
sqlWithoutConst(dml.statement()),
GridCacheQueryType.SQL_FIELDS,
schemaName,
true,
null
);
```
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]