rthneha opened a new issue, #29087:
URL: https://github.com/apache/beam/issues/29087

   ### What happened?
   
   Apache Beam supports Boolean Datatype read.
   
https://beam.apache.org/releases/javadoc/current/org/apache/beam/sdk/schemas/Schema.FieldType.html
   
   But ClickhouseIOWriter class doesn't support it.
   
https://github.com/apache/beam/blob/master/sdks/java/io/clickhouse/src/main/java/org/apache/beam/sdk/io/clickhouse/ClickHouseWriter.java
   
   We can add Boolean support for it by doing below changes maybe:
   
         case BOOL:
           BinaryStreamUtils.writeUInt8(stream, (Boolean) value);
           break;  
   
   ### Issue Priority
   
   Priority: 3 (minor)
   
   ### Issue Components
   
   - [ ] Component: Python SDK
   - [ ] Component: Java SDK
   - [ ] Component: Go SDK
   - [ ] Component: Typescript SDK
   - [X] Component: IO connector
   - [ ] Component: Beam YAML
   - [ ] Component: Beam examples
   - [ ] Component: Beam playground
   - [ ] Component: Beam katas
   - [ ] Component: Website
   - [ ] Component: Spark Runner
   - [ ] Component: Flink Runner
   - [ ] Component: Samza Runner
   - [ ] Component: Twister2 Runner
   - [ ] Component: Hazelcast Jet Runner
   - [ ] Component: Google Cloud Dataflow Runner


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to