File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -117,16 +117,16 @@ data.sinkTo(csvSink);
117117
118118## Supported ClickHouse Types
119119
120- | Java Type | ClickHouse Type | Supported |
121- | -----------------| -----------------| -----------|
122- | byte/Byte | Int8 | ✅ |
123- | short/Short | Int16 | ✅ |
124- | int/Integer | Int32 | ✅ |
125- | long/Long | Int64 | ✅ |
126- | float/Float | Float | ✅ |
127- | double/Double | Double | ✅ |
128- | boolean/Boolean | Boolean | ✅ |
129- | String | String | ✅ |
120+ | Java Type | ClickHouse Type | Supported | Serialize Method |
121+ | -----------------| -----------------| -----------| ------------------------ |
122+ | byte/Byte | Int8 | ✅ | Serialize.writeInt8 |
123+ | short/Short | Int16 | ✅ | Serialize.writeInt16 |
124+ | int/Integer | Int32 | ✅ | Serialize.writeInt32 |
125+ | long/Long | Int64 | ✅ | Serialize.writeInt64 |
126+ | float/Float | Float | ✅ | Serialize.writeFloat32 |
127+ | double/Double | Double | ✅ | Serialize.writeFloat64 |
128+ | boolean/Boolean | Boolean | ✅ | Serialize.writeBoolean |
129+ | String | String | ✅ | Serialize.writeString |
130130
131131## Configuration Options
132132
You can’t perform that action at this time.
0 commit comments