This is an automated email from the ASF dual-hosted git repository.
duanzhengqiang 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 61fa6053969 Remove useless Enum GrantLevelTypeEnum (#23535)
61fa6053969 is described below
commit 61fa6053969f6c6a80e6cfeb3dfece6f952444b8
Author: xuup <[email protected]>
AuthorDate: Fri Jan 13 09:51:58 2023 +0800
Remove useless Enum GrantLevelTypeEnum (#23535)
---
.../common/segment/generic/GrantLevelTypeEnum.java | 26 ----------------------
1 file changed, 26 deletions(-)
diff --git
a/sql-parser/statement/src/main/java/org/apache/shardingsphere/sql/parser/sql/common/segment/generic/GrantLevelTypeEnum.java
b/sql-parser/statement/src/main/java/org/apache/shardingsphere/sql/parser/sql/common/segment/generic/GrantLevelTypeEnum.java
deleted file mode 100644
index b968bd426ff..00000000000
---
a/sql-parser/statement/src/main/java/org/apache/shardingsphere/sql/parser/sql/common/segment/generic/GrantLevelTypeEnum.java
+++ /dev/null
@@ -1,26 +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.sql.parser.sql.common.segment.generic;
-
-/**
- * Grant level type enum.
- */
-public enum GrantLevelTypeEnum {
-
- GLOBAL, DB, TABLE
-}