lanchengx commented on a change in pull request #12127:
URL: https://github.com/apache/shardingsphere/pull/12127#discussion_r699141934



##########
File path: 
shardingsphere-proxy/shardingsphere-proxy-backend/src/main/java/org/apache/shardingsphere/proxy/backend/text/admin/mysql/executor/information/SelectInformationSchemataExecutor.java
##########
@@ -0,0 +1,111 @@
+/*
+ * 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.proxy.backend.text.admin.mysql.executor.information;
+
+import 
org.apache.shardingsphere.infra.metadata.resource.ShardingSphereResource;
+import org.apache.shardingsphere.proxy.backend.context.ProxyContext;
+import 
org.apache.shardingsphere.proxy.backend.text.admin.mysql.executor.information.AbstractSelectInformationExecutor.DefaultSelectInformationExecutor;
+import 
org.apache.shardingsphere.sql.parser.sql.common.segment.dml.item.ColumnProjectionSegment;
+import 
org.apache.shardingsphere.sql.parser.sql.common.segment.dml.item.ProjectionSegment;
+import 
org.apache.shardingsphere.sql.parser.sql.common.segment.dml.item.ShorthandProjectionSegment;
+import 
org.apache.shardingsphere.sql.parser.sql.common.statement.dml.SelectStatement;
+import 
org.apache.shardingsphere.sql.parser.sql.common.value.identifier.IdentifierValue;
+
+import java.util.Collection;
+import java.util.HashMap;
+import java.util.LinkedHashSet;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+import java.util.stream.Collectors;
+import java.util.stream.Stream;
+
+/**
+ * Schemata query executor, used to query the schemata table.
+ */
+public final class SelectInformationSchemataExecutor extends 
DefaultSelectInformationExecutor {
+    
+    public static final String SCHEMA_NAME = "SCHEMA_NAME";
+    
+    public static final String DEFAULT_CHARACTER_SET_NAME = 
"DEFAULT_CHARACTER_SET_NAME";
+    
+    public static final String DEFAULT_COLLATION_NAME = 
"DEFAULT_COLLATION_NAME";
+    
+    public static final String CATALOG_NAME = "CATALOG_NAME";
+    
+    public static final String SQL_PATH = "SQL_PATH";
+    
+    public static final String DEFAULT_ENCRYPTION = "DEFAULT_ENCRYPTION";
+    
+    private static final Set<String> SCHEMA_WITHOUT_DATA_SOURCE = new 
LinkedHashSet<>();
+    
+    private final SelectStatement sqlStatement;
+    
+    public SelectInformationSchemataExecutor(final SelectStatement 
sqlStatement, final String sql) {
+        super(sql);
+        this.sqlStatement = sqlStatement;
+    }
+    
+    @Override
+    protected List<String> getSchemaNames() {
+        List<String> schemaNames = 
ProxyContext.getInstance().getAllSchemaNames();
+        SCHEMA_WITHOUT_DATA_SOURCE.addAll(schemaNames.stream().filter(each -> 
!AbstractSelectInformationExecutor.hasDatasource(each)).collect(Collectors.toSet()));
+        List<String> result = 
schemaNames.stream().filter(AbstractSelectInformationExecutor::hasDatasource).collect(Collectors.toList());
+        if (!SCHEMA_WITHOUT_DATA_SOURCE.isEmpty()) {
+            fillSchemasWithoutDatasource();
+        }
+        return result;
+    }
+    
+    @Override
+    protected void rowPostProcessing(final String schemaName, final 
Map<String, Object> rows) {
+        ShardingSphereResource resource = 
ProxyContext.getInstance().getContextManager().getMetaDataContexts().getMetaData(schemaName).getResource();
+        Set<String> catalogs = 
resource.getDataSources().keySet().stream().map(each -> 
resource.getDataSourcesMetaData().getDataSourceMetaData(each).getCatalog()).collect(Collectors.toSet());
+        String rowValue = null == rows.get(SCHEMA_NAME) ? 
rows.getOrDefault(SCHEMA_NAME.toLowerCase(), "").toString() : 
rows.getOrDefault(SCHEMA_NAME, "").toString();
+        if (catalogs.contains(rowValue)) {
+            rows.replace(SCHEMA_NAME, schemaName);
+        } else {
+            rows.clear();
+        }
+    }
+    
+    private void fillSchemasWithoutDatasource() {
+        if (SCHEMA_WITHOUT_DATA_SOURCE.isEmpty()) {
+            return;
+        }
+        Map<String, String> defaultRowData = getTheDefaultRowData();
+        SCHEMA_WITHOUT_DATA_SOURCE.forEach(each -> {
+            Map<String, Object> row = new HashMap<>(defaultRowData);
+            row.replace(SCHEMA_NAME, each);
+            getRows().addLast(row);
+        });
+        SCHEMA_WITHOUT_DATA_SOURCE.clear();
+    }
+    
+    private Map<String, String> getTheDefaultRowData() {
+        Map<String, String> result;
+        Collection<ProjectionSegment> projections = 
sqlStatement.getProjections().getProjections();
+        if (projections.stream().anyMatch(each -> each instanceof 
ShorthandProjectionSegment)) {
+            result = Stream.of(CATALOG_NAME, SCHEMA_NAME, 
DEFAULT_CHARACTER_SET_NAME, DEFAULT_COLLATION_NAME, SQL_PATH, 
DEFAULT_ENCRYPTION).collect(Collectors.toMap(each -> each, each -> ""));
+        } else {
+            result = projections.stream().map(each -> 
((ColumnProjectionSegment) 
each).getColumn().getIdentifier()).map(IdentifierValue::getValue).collect(Collectors.toMap(each
 -> each, each -> ""));
+        }
+        return result;
+    }
+    

Review comment:
       Thanks , i fixed it 




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to