Skip to content

Commit 02e4aa7

Browse files
committed
Remove System.out...
1 parent b7058cd commit 02e4aa7

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

flink-connector-clickhouse-base/src/main/java/com/clickhouse/utils/Serialize.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ public static Map<ClickHouseDataType, Method> mapClickHouseTypeToMethod() {
114114
// Method structure write[ClickHouse Type](OutputStream, Java type, ... )
115115
// Date support
116116
public static void writeDate(OutputStream out, LocalDate value, boolean defaultsSupport, boolean isNullable, ClickHouseDataType dataType, boolean hasDefault, String column) throws IOException {
117-
System.out.println("writeDate");
118117
if (writeValuePreamble(out, defaultsSupport, isNullable, dataType, hasDefault, column, value)) {
119118
SerializerUtils.writeDate(out, value, ZoneId.of("UTC")); // TODO: check
120119
}

0 commit comments

Comments
 (0)