Skip to content

Commit 6c27f41

Browse files
committed
Merge branch 'main' into fix_http_compression
2 parents 418bc64 + c8eae5d commit 6c27f41

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ public enum ClickHouseDataType implements SQLType {
130130
Dynamic(Object.class, true, true, false, 0, 0, 0, 0, 0, true, 0x2B),
131131
Time(LocalDateTime.class, true, false, false, 4, 9, 0, 0, 9, false, 0x32), // 0x33 for Time(Timezone)
132132
Time64(LocalDateTime.class, true, false, false, 8, 9, 0, 0, 0, false, 0x34), // 0x35 for Time64(P, Timezone)
133+
QBit(Double.class, true, false, false, 0, 0, 0, 0, 0, true, 0x36),
133134
;
134135

135136
public static final List<ClickHouseDataType> ORDERED_BY_RANGE_INT_TYPES =

0 commit comments

Comments
 (0)