From 2b9fcc91bed22acd8d9b176cb4c11ac41f6081ec Mon Sep 17 00:00:00 2001 From: Liang Zhang Date: Tue, 7 Nov 2023 18:46:25 +0800 Subject: [PATCH] Remove useless ColumnName (#28975) * Update user cases * Remove useless ColumnName --- .../pipeline/common/metadata/ColumnName.java | 30 ------------------- 1 file changed, 30 deletions(-) delete mode 100644 kernel/data-pipeline/core/src/main/java/org/apache/shardingsphere/data/pipeline/common/metadata/ColumnName.java diff --git a/kernel/data-pipeline/core/src/main/java/org/apache/shardingsphere/data/pipeline/common/metadata/ColumnName.java b/kernel/data-pipeline/core/src/main/java/org/apache/shardingsphere/data/pipeline/common/metadata/ColumnName.java deleted file mode 100644 index 353c3544c6b08..0000000000000 --- a/kernel/data-pipeline/core/src/main/java/org/apache/shardingsphere/data/pipeline/common/metadata/ColumnName.java +++ /dev/null @@ -1,30 +0,0 @@ -/* - * 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.data.pipeline.common.metadata; - -/** - * Column name. - * - *

It's case-insensitive.

- */ -public final class ColumnName extends IdentifierName { - - public ColumnName(final String columnName) { - super(columnName); - } -}