diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2018-10-28 20:17:10 +0100 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-10-30 20:21:25 +0100 |
commit | 77125e83fc41646b49419e3acc017b68410db873 (patch) | |
tree | a429651888373dad628b2e1922ec3da51b7b726b /server/sonar-db-core/src | |
parent | c9d72ec34409a3ebbf6f14ef6b9c427d0ec6565d (diff) | |
download | sonarqube-77125e83fc41646b49419e3acc017b68410db873.tar.gz sonarqube-77125e83fc41646b49419e3acc017b68410db873.zip |
SONARCLOUD-161 remove useless comments in Dialect
Diffstat (limited to 'server/sonar-db-core/src')
-rw-r--r-- | server/sonar-db-core/src/main/java/org/sonar/db/dialect/Dialect.java | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/server/sonar-db-core/src/main/java/org/sonar/db/dialect/Dialect.java b/server/sonar-db-core/src/main/java/org/sonar/db/dialect/Dialect.java index 81bc2ecac6f..1a4c6707fcb 100644 --- a/server/sonar-db-core/src/main/java/org/sonar/db/dialect/Dialect.java +++ b/server/sonar-db-core/src/main/java/org/sonar/db/dialect/Dialect.java @@ -23,9 +23,6 @@ import java.util.List; public interface Dialect { - /** - * @return the sonar dialect Id to be matched with the sonar.jdbc.dialect property when provided - */ String getId(); /** @@ -33,51 +30,34 @@ public interface Dialect { */ boolean matchesJdbcUrl(String jdbcConnectionURL); - /** - * @since 2.13 - */ String getDefaultDriverClassName(); List<String> getConnectionInitStatements(); - /** - * @since 2.14 - */ String getTrueSqlValue(); - /** - * @since 2.14 - */ String getFalseSqlValue(); String getSqlFromDual(); /** * Query used to validate the jdbc connection. - * - * @since 3.2 */ String getValidationQuery(); /** * Fetch size to be used when scrolling large result sets. - * - * @since 5.0 */ int getScrollDefaultFetchSize(); /** * Fetch size to scroll one row at a time. It sounds strange because obviously value is 1 in most cases, * but it's different on MySQL... - * - * @since 5.0 */ int getScrollSingleRowFetchSize(); /** * Indicates whether DB migration can be perform on the DB vendor implementation associated with the current dialect. - * - * @return a boolean */ boolean supportsMigration(); } |