Uses of Class
com.clickhouse.client.ClickHouseFormat
-
Packages that use ClickHouseFormat Package Description com.clickhouse.client Provides necessary classes to communicate with ClickHouse server.com.clickhouse.client.data Provides necessary classes to handle different format or type of data. -
-
Uses of ClickHouseFormat in com.clickhouse.client
Methods in com.clickhouse.client that return ClickHouseFormat Modifier and Type Method Description ClickHouseFormatClickHouseConfig. getFormat()ClickHouseFormatClickHouseRequest. getFormat()Gets data format used for communication between server and client.static ClickHouseFormatClickHouseFormat. valueOf(String name)Returns the enum constant of this type with the specified name.static ClickHouseFormat[]ClickHouseFormat. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.clickhouse.client with parameters of type ClickHouseFormat Modifier and Type Method Description static CompletableFuture<ClickHouseResponseSummary>ClickHouseClient. dump(ClickHouseNode server, String tableOrQuery, ClickHouseFormat format, ClickHouseCompression compression, OutputStream output)Dumps a table or query result from server into output stream.static CompletableFuture<ClickHouseResponseSummary>ClickHouseClient. dump(ClickHouseNode server, String tableOrQuery, ClickHouseFormat format, ClickHouseCompression compression, String file)Dumps a table or query result from server into a file.SelfTClickHouseRequest. format(ClickHouseFormat format)Sets format to be used for communication between server and client.ClickHouseRequest.MutationClickHouseRequest.Mutation. format(ClickHouseFormat format)static CompletableFuture<ClickHouseResponseSummary>ClickHouseClient. load(ClickHouseNode server, String table, ClickHouseFormat format, ClickHouseCompression compression, ClickHouseWriter writer)Loads data from a custom writer into a table using specified format and compression algorithm.static CompletableFuture<ClickHouseResponseSummary>ClickHouseClient. load(ClickHouseNode server, String table, ClickHouseFormat format, ClickHouseCompression compression, InputStream input)Loads data from input stream into a table using specified format and compression algorithm.static CompletableFuture<ClickHouseResponseSummary>ClickHouseClient. load(ClickHouseNode server, String table, ClickHouseFormat format, ClickHouseCompression compression, String file)Loads data from a file into table using specified format and compression algorithm. -
Uses of ClickHouseFormat in com.clickhouse.client.data
Methods in com.clickhouse.client.data that return ClickHouseFormat Modifier and Type Method Description ClickHouseFormatClickHouseExternalTable. getFormat()ClickHouseFormatClickHouseStreamResponse. getFormat()Methods in com.clickhouse.client.data with parameters of type ClickHouseFormat Modifier and Type Method Description ClickHouseExternalTable.BuilderClickHouseExternalTable.Builder. format(ClickHouseFormat format)Constructors in com.clickhouse.client.data with parameters of type ClickHouseFormat Constructor Description ClickHouseExternalTable(String name, CompletableFuture<InputStream> content, ClickHouseFormat format, Collection<ClickHouseColumn> columns, boolean asTempTable)
-