Skip to content

Commit bf1284d

Browse files
authored
Merge pull request #1991 from ClickHouse/v2_rename_DriveProperties
[jdbc-v2] Renamed DriveProperties to DriverProperties
2 parents e8479d9 + e35fdc2 commit bf1284d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jdbc-v2/src/main/java/com/clickhouse/jdbc/internal/DriveProperties.java renamed to jdbc-v2/src/main/java/com/clickhouse/jdbc/internal/DriverProperties.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
/**
44
* JDBC driver specific properties. Do not include any ClickHouse client properties here.
55
*/
6-
public enum DriveProperties {
6+
public enum DriverProperties {
77

88
PLACEHOLDER("placeholder", "Placeholder for unknown properties");
99

1010
private final String key;
1111

1212
private final String description;
1313

14-
DriveProperties(String key, String description) {
14+
DriverProperties(String key, String description) {
1515
this.key = key;
1616
this.description = description;
1717
}

0 commit comments

Comments
 (0)