From 7f12e79c9be29549eb128975f95034671f07dd99 Mon Sep 17 00:00:00 2001 From: sneakythrows Date: Mon, 1 Feb 2021 21:59:06 +0300 Subject: [PATCH] Add missing format types I need to use JSONCompactString --- .../java/ru/yandex/clickhouse/domain/ClickHouseFormat.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/ru/yandex/clickhouse/domain/ClickHouseFormat.java b/src/main/java/ru/yandex/clickhouse/domain/ClickHouseFormat.java index 6a8f9371b..51b0b1381 100644 --- a/src/main/java/ru/yandex/clickhouse/domain/ClickHouseFormat.java +++ b/src/main/java/ru/yandex/clickhouse/domain/ClickHouseFormat.java @@ -24,7 +24,11 @@ public enum ClickHouseFormat { Vertical, JSON, JSONCompact, + JSONCompactString, JSONEachRow, + JSONStringEachRow, + JSONCompactEachRow, + JSONCompactStringEachRow, TSKV, TSV, Pretty,