Skip to content

Commit 6493e2d

Browse files
authored
Merge pull request #2178 from ClickHouse/undeprecating
Removing deprecated label since they'll be copied to V2
2 parents 57a0159 + c4e6b7a commit 6493e2d

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

clickhouse-data/src/main/java/com/clickhouse/data/ClickHouseColumn.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@
5555
/**
5656
* This class represents a column defined in database.
5757
*/
58-
@Deprecated
5958
public final class ClickHouseColumn implements Serializable {
6059
public static final String TYPE_NAME = "Column";
6160
public static final ClickHouseColumn[] EMPTY_ARRAY = new ClickHouseColumn[0];

clickhouse-data/src/main/java/com/clickhouse/data/ClickHouseDataType.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@
4747
* ClickHouse, but for the sake of this driver, we treat these data types as
4848
* modifiers for the underlying base data types.
4949
*/
50-
@Deprecated
5150
@SuppressWarnings("squid:S115")
5251
public enum ClickHouseDataType {
5352
Bool(Boolean.class, false, false, true, 1, 1, 0, 0, 0, false,0x2D, "BOOLEAN"),

clickhouse-data/src/main/java/com/clickhouse/data/ClickHouseFormat.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
* All formats supported by ClickHouse. More information at:
77
* https://clickhouse.com/docs/en/interfaces/formats/.
88
*/
9-
@Deprecated
109
@SuppressWarnings("squid:S115")
1110
public enum ClickHouseFormat {
1211
// start with the most common ones

0 commit comments

Comments
 (0)