dawidwys commented on code in PR #23884:
URL: https://github.com/apache/flink/pull/23884#discussion_r1424168387
##########
flink-table/flink-table-api-java/src/main/java/org/apache/flink/table/operations/CalculatedQueryOperation.java:
##########
@@ -37,6 +38,8 @@ public class CalculatedQueryOperation implements
QueryOperation {
private final List<ResolvedExpression> arguments;
private final ResolvedSchema resolvedSchema;
+ private static final AtomicLong uniqueTableIdGenerator = new AtomicLong(0);
Review Comment:
We figured it's only ever used in `JoinQueryOperation` which atm supports
only two-way join. We can use `0` for now.
--
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]