This is an automated email from the ASF dual-hosted git repository.
sunnianjun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git
The following commit(s) were added to refs/heads/master by this push:
new 2b9fcc91bed Remove useless ColumnName (#28975)
2b9fcc91bed is described below
commit 2b9fcc91bed22acd8d9b176cb4c11ac41f6081ec
Author: Liang Zhang <[email protected]>
AuthorDate: Tue Nov 7 18:46:25 2023 +0800
Remove useless ColumnName (#28975)
* Update user cases
* Remove useless ColumnName
---
.../data/pipeline/common/metadata/ColumnName.java | 30 ----------------------
1 file changed, 30 deletions(-)
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 353c3544c6b..00000000000
---
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.
- *
- * <p>It's case-insensitive.</p>
- */
-public final class ColumnName extends IdentifierName {
-
- public ColumnName(final String columnName) {
- super(columnName);
- }
-}