linghengqian opened a new issue, #37731: URL: https://github.com/apache/shardingsphere/issues/37731
## Feature Request **For English only**, other languages will not be accepted. Please pay attention on issues you submitted, because we maybe need more details. If no response anymore and we cannot make decision by current information, we will **close it**. Please answer these questions before submitting your issue. Thanks! ### Is your feature request related to a problem? - https://github.com/apache/shardingsphere/issues/29052 and https://github.com/apache/shardingsphere/issues/35052 . ### Describe the feature you would like. - Investigating back to https://github.com/apache/shardingsphere/issues/29052 and https://github.com/apache/shardingsphere/issues/35052 has become very troublesome, mainly for me personally, because the actual list of required Maven dependencies is not documented. - I believe it is necessary to update the outdated documentation related to optional components of JDBC and GraalVM, primarily focusing on updating the documentation related to Maven dependencies. - The documentation at https://shardingsphere.apache.org/document/current/en/user-manual/shardingsphere-jdbc/graalvm-native-image/ does not provide a minimal configuration. All optional configurations should be broken down into sub-entries. - Regarding https://shardingsphere.apache.org/document/current/en/user-manual/shardingsphere-jdbc/graalvm-native-image/development/ , the documentation should state that the warning for `CodeCachePoolMXBean` actually originates from Alibaba Druid passed by the Seata Client. Further investigation is needed to pinpoint the specific problematic part of the Alibaba Druid code. - The documentation for https://shardingsphere.apache.org/document/current/en/user-manual/shardingsphere-jdbc/optional-plugins/clickhouse/ , https://shardingsphere.apache.org/document/current/en/user-manual/shardingsphere-jdbc/optional-plugins/firebird/ , https://shardingsphere.apache.org/document/current/en/user-manual/shardingsphere-jdbc/optional-plugins/hiveserver2/ , and https://shardingsphere.apache.org/document/current/en/user-manual/shardingsphere-jdbc/optional-plugins/presto/ all lacks reasonable Maven dependencies, for example, ```xml <dependency> <groupId>org.apache.shardingsphere</groupId> <artifactId>shardingsphere-infra-data-source-pool-hikari</artifactId> <version>5.5.3-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.shardingsphere</groupId> <artifactId>shardingsphere-infra-url-classpath</artifactId> <version>5.5.3-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.shardingsphere</groupId> <artifactId>shardingsphere-jdbc-dialect-clickhouse</artifactId> <version>5.5.3-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.shardingsphere</groupId> <artifactId>shardingsphere-standalone-mode-repository-memory</artifactId> <version>5.5.3-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.shardingsphere</groupId> <artifactId>shardingsphere-sharding-core</artifactId> <version>5.5.3-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.shardingsphere</groupId> <artifactId>shardingsphere-authority-simple</artifactId> <version>5.5.3-SNAPSHOT</version> </dependency> ``` - The same issue is encountered at https://shardingsphere.apache.org/document/current/en/user-manual/shardingsphere-jdbc/special-api/transaction/seata/ . - For the optional JDBC components, separate subpages should be created for H2database and SQL Server. Support for H2database requires importing `org.apache.shardingsphere:shardingsphere-jdbc-dialect-mysql`, which is not intuitive. Furthermore, the SQL Server dialect parsing module does not yet support `Drop table if`, which needs to be noted. This is because it is still affecting the writing of nativeTest, and it is unlikely that support for h2database will be abandoned anytime soon. -- 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]
