luoyuxia commented on code in PR #22166:
URL: https://github.com/apache/flink/pull/22166#discussion_r1147334229


##########
flink-table/flink-table-api-java/src/main/java/org/apache/flink/table/api/internal/TableEnvironmentInternal.java:
##########
@@ -74,15 +75,15 @@ public interface TableEnvironmentInternal extends 
TableEnvironment {
      * @param operations The operations to be executed.
      * @return the affected row counts (-1 means unknown).
      */
-    TableResultInternal executeInternal(List<ModifyOperation> operations);
+    TableResult executeInternal(List<ModifyOperation> operations);
 
     /**
      * Execute the given operation and return the execution result.
      *
      * @param operation The operation to be executed.
      * @return the content of the execution result.
      */
-    TableResultInternal executeInternal(Operation operation);
+    TableResult executeInternal(Operation operation);

Review Comment:
   Previous, we have `ExtendedOperationExecutor#executeOperation` marked as 
`PublicEvolving`, so the result of this method should be TableResult which is 
also marked as `PublicEvolving`. So we should also change it to `TableResult` 
in here.
   
   Now, I revert this changes since we remove `ExtendedOperationExecutor`.



-- 
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]

Reply via email to