terrymanu commented on a change in pull request #2949: 4.0.0-RC2 does not support Oracle 12C connection configuration #2911 URL: https://github.com/apache/incubator-shardingsphere/pull/2949#discussion_r324966584
########## File path: sharding-core/sharding-core-execute/src/main/java/org/apache/shardingsphere/core/execute/metadata/TableMetaDataLoader.java ########## @@ -209,12 +218,12 @@ private boolean isTableExist(final Connection connection, final String catalog, } return result; } - + private Optional<String> getLogicIndex(final String actualIndexName, final String actualTableName) { String indexNameSuffix = "_" + actualTableName; return actualIndexName.contains(indexNameSuffix) ? Optional.of(actualIndexName.replace(indexNameSuffix, "")) : Optional.<String>absent(); } - + Review comment: Please keep original indentation with blank line ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services