sk0x50 commented on code in PR #6541: URL: https://github.com/apache/ignite-3/pull/6541#discussion_r2321549152
########## docs/_docs/developers-guide/compute/compute.adoc: ########## @@ -486,8 +478,9 @@ You can also use the `of` method to instead specify the table name and the schem tab:Java[] [source, java] ---- -QualifiedName myTableName = QualifiedName.of("PUBLIC", "MY_TABLE"); -Table myTable = tableApi.table(myTableName); +QualifiedName customSchemaTableName = QualifiedName.of("PUBLIC", "MY_TABLE"); + +client.compute().execute(table(customSchemaTableName), JobDescriptor.builder(HelloMessageJob.class).build(), null); Review Comment: table(customSchemaTable) -> BroadcastJobTarget.table(customSchemaTable) -- 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