We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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;
Priority: 3 (minor)
The text was updated successfully, but these errors were encountered:
@rthneha Hi, I'm from ClickHouse i can handle the addition of bool type. Do we know any other types that we want to add as well.
Sorry, something went wrong.
Boolean type has been added in #29522, should we close the issue?
Hi, I'm from ClickHouse i can handle the addition of bool type. Do we know any other types that we want to add as well.
@mzitnik Can we add support for Decimal32, Decimal64 and DateTime64 as well?
Should I add a new Issue to track this?
@priteshgudge yes, please do
No branches or pull requests
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:
Issue Priority
Priority: 3 (minor)
Issue Components
The text was updated successfully, but these errors were encountered: