Suvrat1629 commented on code in PR #36059:
URL: https://github.com/apache/beam/pull/36059#discussion_r2338513532


##########
sdks/java/io/clickhouse/src/main/java/org/apache/beam/sdk/io/clickhouse/TableSchema.java:
##########
@@ -313,6 +314,10 @@ public static ColumnType parse(String str) {
      * @return value of ClickHouse expression
      */
     public static Object parseDefaultExpression(ColumnType columnType, String 
value) {
+      if (value == null || value.isEmpty()) {
+        return null;

Review Comment:
   Oh yes right, I have removed the `value.isEmpty()` check.



-- 
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