strongduanmu commented on code in PR #28762:
URL: https://github.com/apache/shardingsphere/pull/28762#discussion_r1362937106


##########
kernel/sql-federation/optimizer/src/main/java/org/apache/shardingsphere/sqlfederation/optimizer/operator/physical/EnumerableModify.java:
##########
@@ -0,0 +1,52 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.shardingsphere.sqlfederation.optimizer.operator.physical;
+
+import org.apache.calcite.adapter.enumerable.EnumerableRel;
+import org.apache.calcite.adapter.enumerable.EnumerableRelImplementor;
+import org.apache.calcite.plan.RelOptCluster;
+import org.apache.calcite.plan.RelOptTable;
+import org.apache.calcite.plan.RelTraitSet;
+import org.apache.calcite.prepare.Prepare.CatalogReader;
+import org.apache.calcite.rel.RelNode;
+import org.apache.calcite.rel.core.TableModify;
+import org.apache.calcite.rex.RexNode;
+
+import java.util.List;
+
+/**
+ * Enumerable modify.
+ */
+public final class EnumerableModify extends TableModify implements 
EnumerableRel {
+    
+    public EnumerableModify(final RelOptCluster cluster, final RelTraitSet 
traitSet, final RelOptTable table, final CatalogReader catalogReader,
+                            final RelNode input, final Operation operation, 
final List<String> updateColumnList, final List<RexNode> sourceExpressionList, 
final boolean flattened) {
+        super(cluster, traitSet, table, catalogReader, input, operation, 
updateColumnList, sourceExpressionList, flattened);
+    }
+    
+    @Override
+    public RelNode copy(final RelTraitSet traitSet, final List<RelNode> 
inputs) {
+        return new EnumerableModify(getCluster(), traitSet, getTable(), 
getCatalogReader(), sole(inputs), getOperation(), getUpdateColumnList(), 
getSourceExpressionList(), isFlattened());
+    }
+    
+    @Override
+    public Result implement(final EnumerableRelImplementor implementor, final 
Prefer prefer) {
+        // TODO generate delete statements based on the data set and related 
table information.
+        return null;

Review Comment:
   If this method does not support now, can we throw 
UnsupportedOperationExcetion?



##########
kernel/sql-federation/optimizer/src/main/java/org/apache/shardingsphere/sqlfederation/optimizer/metadata/schema/SQLFederationTable.java:
##########
@@ -124,4 +132,16 @@ public String toString() {
     public Statistic getStatistic() {
         return statistic;
     }
+    
+    @Override
+    public Collection<Object[]> getModifiableCollection() {
+        return null;

Review Comment:
   If this method does not support now, can we throw 
UnsupportedOperationExcetion?



##########
kernel/sql-federation/optimizer/src/main/java/org/apache/shardingsphere/sqlfederation/optimizer/planner/rule/converter/EnumerableModifyConverterRule.java:
##########
@@ -0,0 +1,54 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package 
org.apache.shardingsphere.sqlfederation.optimizer.planner.rule.converter;
+
+import org.apache.calcite.adapter.enumerable.EnumerableConvention;
+import org.apache.calcite.plan.Convention;
+import org.apache.calcite.plan.RelTraitSet;
+import org.apache.calcite.rel.RelNode;
+import org.apache.calcite.rel.convert.ConverterRule;
+import org.apache.calcite.rel.core.TableModify;
+import org.apache.calcite.rel.logical.LogicalTableModify;
+import org.apache.calcite.schema.ModifiableTable;
+import 
org.apache.shardingsphere.sqlfederation.optimizer.operator.physical.EnumerableModify;
+
+/**
+ * Enumerable modify converter rule.
+ */
+public final class EnumerableModifyConverterRule extends ConverterRule {
+    
+    public static final Config DEFAULT_CONFIG = 
Config.INSTANCE.withConversion(LogicalTableModify.class, Convention.NONE, 
EnumerableConvention.INSTANCE,
+            
EnumerableModifyConverterRule.class.getSimpleName()).withRuleFactory(EnumerableModifyConverterRule::new);
+    
+    private EnumerableModifyConverterRule(final Config config) {
+        super(config);
+    }
+    
+    @Override
+    public RelNode convert(final RelNode rel) {
+        TableModify modify = (TableModify) rel;
+        ModifiableTable modifiableTable = 
modify.getTable().unwrap(ModifiableTable.class);
+        if (modifiableTable == null) {

Review Comment:
   Please put null condition on the left side.



-- 
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...@shardingsphere.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to