Skip to content

Commit 7c266b4

Browse files
committed
Update Serialize Method usage
1 parent e3b62be commit 7c266b4

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)