提交 ba2aba80 编写于 作者: J Jun Aoki 提交者: Fabian Hueske

[FLINK-3116] Remove RecordOperator

This closes #1444
上级 a6a05288
/*
* 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.flink.api.common.operators;
import org.apache.flink.types.Key;
/**
* Interface marking operators to be referring to the {@link org.apache.flink.types.Record} data model.
*/
public interface RecordOperator {
/**
* Gets the key classes that this operator works on.
*
* @return The key classes that this operator works on.
*/
Class<? extends Key<?>>[] getKeyClasses();
}
......@@ -25,24 +25,16 @@ import org.apache.flink.api.common.functions.RuntimeContext;
import org.apache.flink.api.common.functions.util.NoOpFunction;
import org.apache.flink.api.common.operators.BinaryOperatorInformation;
import org.apache.flink.api.common.operators.DualInputOperator;
import org.apache.flink.api.common.operators.RecordOperator;
import org.apache.flink.api.common.operators.util.UserCodeClassWrapper;
import org.apache.flink.api.common.typeinfo.TypeInformation;
import org.apache.flink.types.Key;
public class NoOpBinaryUdfOp<OUT> extends DualInputOperator<OUT, OUT, OUT, NoOpFunction> implements RecordOperator {
public class NoOpBinaryUdfOp<OUT> extends DualInputOperator<OUT, OUT, OUT, NoOpFunction> {
public NoOpBinaryUdfOp(TypeInformation<OUT> type) {
super(new UserCodeClassWrapper<NoOpFunction>(NoOpFunction.class), new BinaryOperatorInformation<OUT, OUT, OUT>(type, type, type), "NoContract");
}
@SuppressWarnings("unchecked")
@Override
public Class<? extends Key<?>>[] getKeyClasses() {
return (Class<? extends Key<?>>[]) new Class[0];
}
@Override
protected List<OUT> executeOnCollections(List<OUT> inputData1, List<OUT> inputData2, RuntimeContext runtimeContext, ExecutionConfig executionConfig) {
throw new UnsupportedOperationException();
......
......@@ -23,15 +23,13 @@ import java.util.List;
import org.apache.flink.api.common.ExecutionConfig;
import org.apache.flink.api.common.functions.RuntimeContext;
import org.apache.flink.api.common.functions.util.NoOpFunction;
import org.apache.flink.api.common.operators.RecordOperator;
import org.apache.flink.api.common.operators.SingleInputOperator;
import org.apache.flink.api.common.operators.UnaryOperatorInformation;
import org.apache.flink.api.common.operators.util.UserCodeClassWrapper;
import org.apache.flink.api.common.typeinfo.TypeInformation;
import org.apache.flink.types.Key;
public class NoOpUnaryUdfOp<OUT> extends SingleInputOperator<OUT, OUT, NoOpFunction> implements RecordOperator {
public class NoOpUnaryUdfOp<OUT> extends SingleInputOperator<OUT, OUT, NoOpFunction> {
@SuppressWarnings("rawtypes")
public static final NoOpUnaryUdfOp INSTANCE = new NoOpUnaryUdfOp();
......@@ -42,12 +40,6 @@ public class NoOpUnaryUdfOp<OUT> extends SingleInputOperator<OUT, OUT, NoOpFunct
super(new UserCodeClassWrapper<NoOpFunction>(NoOpFunction.class), null, "");
}
@SuppressWarnings("unchecked")
@Override
public Class<? extends Key<?>>[] getKeyClasses() {
return (Class<? extends Key<?>>[]) new Class[0];
}
@Override
public UnaryOperatorInformation<OUT, OUT> getOperatorInfo() {
TypeInformation<OUT> previousOut = input.getOperatorInfo().getOutputType();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册