AMashenkov commented on code in PR #5038: URL: https://github.com/apache/ignite-3/pull/5038#discussion_r1925445126
########## modules/api/src/main/java/org/apache/ignite/compute/BroadcastJobTarget.java: ########## @@ -72,6 +73,18 @@ static BroadcastJobTarget nodes(Set<ClusterNode> nodes) { * @return Job target. */ static BroadcastJobTarget table(String tableName) { - return new TableJobTarget(tableName); + return table(QualifiedName.parse(tableName)); + } + + /** + * Creates a job target for partitioned execution. For each partition in the provided table the job will be executed on a node that + * holds the primary replica. + * + * @param tableName Table name. Review Comment: Why? The methods accept an object that represents table name. We don't care how the object was created. -- 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