diff --git a/docs/community/content/powered-by/_index.cn.md b/docs/community/content/powered-by/_index.cn.md
index b83831f8c0de5..d9c5cd511a564 100644
--- a/docs/community/content/powered-by/_index.cn.md
+++ b/docs/community/content/powered-by/_index.cn.md
@@ -69,7 +69,7 @@ chapter = true
- 当当:用户案例
- 转转:用户案例
- - 得物:用户案例 1 & 用户案例 2
+ - 得物:用户案例 1 & 用户案例 2 & 用户案例 3
- 网易游戏
- 唯品会
- 京东商城海外站
@@ -147,7 +147,7 @@ chapter = true
### 物流
- - 京东物流
+ - 京东物流:用户案例 1 & 用户案例 2
- 中通快递
- 闪送
- 韵达科技
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);
- }
-}