zstan commented on code in PR #5102: URL: https://github.com/apache/ignite-3/pull/5102#discussion_r1928246450
########## modules/client/src/main/java/org/apache/ignite/internal/client/compute/ClientCompute.java: ########## @@ -215,9 +216,11 @@ private <T, R> CompletableFuture<SubmitResult> submit0(JobTarget target, JobDesc var mapper = (Mapper<? super Object>) colocatedTarget.keyMapper(); if (mapper != null) { - return doExecuteColocatedAsync(colocatedTarget.tableName(), colocatedTarget.key(), mapper, descriptor, arg); + // need to be fixed after: https://issues.apache.org/jira/browse/IGNITE-24301 Fix Thin client protocol to use schema name + return doExecuteColocatedAsync(quoteIfNeeded(colocatedTarget.tableName()), colocatedTarget.key(), mapper, descriptor, arg); Review Comment: can`t use "quote" here cause this method processed recursively and appends additional quotation in such a case -- 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...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org