We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e8479d9 + e35fdc2 commit bf1284dCopy full SHA for bf1284d
…house/jdbc/internal/DriveProperties.java …ouse/jdbc/internal/DriverProperties.javajdbc-v2/src/main/java/com/clickhouse/jdbc/internal/DriveProperties.java renamed to jdbc-v2/src/main/java/com/clickhouse/jdbc/internal/DriverProperties.java
@@ -3,15 +3,15 @@
3
/**
4
* JDBC driver specific properties. Do not include any ClickHouse client properties here.
5
*/
6
-public enum DriveProperties {
+public enum DriverProperties {
7
8
PLACEHOLDER("placeholder", "Placeholder for unknown properties");
9
10
private final String key;
11
12
private final String description;
13
14
- DriveProperties(String key, String description) {
+ DriverProperties(String key, String description) {
15
this.key = key;
16
this.description = description;
17
}
0 commit comments