conquer66666 edited a comment on issue #10419:
URL: 
https://github.com/apache/shardingsphere/issues/10419#issuecomment-883218589


   finally,I hack the 
org.apache.shardingsphere.sql.parser.binder.metadata.util.JdbcUtil.java ,solve 
my problem.
   sharding-jdbc-spring-boot-starter(4.1.1)
   
   public static String getSchema(Connection connection, String databaseType) {
           String result = null;
   
           try {
               if ("Oracle".equals(databaseType)) {
                   return null;   ==============> here modify to my schema
               }
   
               result = connection.getSchema();
           } catch (SQLException var4) {
           }
   
           return result;
       }


-- 
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