Skip to content

Commit e316f02

Browse files
committed
added PrettyJSONEachRow to formats list
1 parent c1478f9 commit e316f02

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

clickhouse-data/src/main/java/com/clickhouse/data/ClickHouseFormat.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ public enum ClickHouseFormat {
5050
JSONCompactStringsEachRowWithNamesAndTypes(true, true, false, true, true, JSONCompactStringsEachRow), // https://clickhouse.com/docs/en/interfaces/formats/#jsoncompactstringeachrowwithnamesandtypes
5151
JSONCompactStrings(false, true, false, false, false, JSONCompactStringsEachRow), // https://clickhouse.com/docs/en/interfaces/formats/#jsoncompactstrings
5252
JSONEachRow(true, true, false, false, true), // https://clickhouse.com/docs/en/interfaces/formats/#jsoneachrow
53+
PrettyJSONEachRow(false, true, false, false, true), // https://clickhouse.com/docs/en/interfaces/formats/PrettyJSONEachRow
5354
JSONEachRowWithProgress(false, true, false, false, true, JSONEachRow), // https://clickhouse.com/docs/en/interfaces/formats/#jsoneachrowwithprogress
5455
JSONLines(true, true, false, false, true), // alias of JSONEachRow
5556
NDJSON(true, true, true, true, true), // alias of JSONEachRow

0 commit comments

Comments
 (0)