Uses of Class
com.clickhouse.client.api.metadata.TableSchema
Packages that use TableSchema
Package
Description
-
Uses of TableSchema in com.clickhouse.client.api
Methods in com.clickhouse.client.api that return TableSchemaModifier and TypeMethodDescriptionClient.getTableSchema(String table) Fetches schema of a table and returns complete information about each column.Client.getTableSchema(String table, String database) Fetches schema of a table and returns complete information about each column.Client.getTableSchemaFromQuery(String sql) Creates table schema from a query.Methods in com.clickhouse.client.api with parameters of type TableSchemaModifier and TypeMethodDescriptionClient.newBinaryFormatReader(QueryResponse response, TableSchema schema) Create an instance ofClickHouseBinaryFormatReaderbased on response.<T> List<T>Client.queryAll(String sqlQuery, Class<T> clazz, TableSchema schema) <T> List<T>Client.queryAll(String sqlQuery, Class<T> clazz, TableSchema schema, Supplier<T> allocator) WARNING: Experimental APIvoidClient.register(Class<?> clazz, TableSchema schema) Registers a POJO class and maps its fields to a table schema -
Uses of TableSchema in com.clickhouse.client.api.data_formats
Methods in com.clickhouse.client.api.data_formats that return TableSchemaConstructors in com.clickhouse.client.api.data_formats with parameters of type TableSchemaModifierConstructorDescriptionRowBinaryFormatReader(InputStream inputStream, QuerySettings querySettings, TableSchema schema, BinaryStreamReader.ByteBufferAllocator byteBufferAllocator) RowBinaryFormatWriter(OutputStream out, TableSchema tableSchema, ClickHouseFormat format) RowBinaryWithNamesFormatReader(InputStream inputStream, QuerySettings querySettings, TableSchema schema, BinaryStreamReader.ByteBufferAllocator byteBufferAllocator) -
Uses of TableSchema in com.clickhouse.client.api.data_formats.internal
Methods in com.clickhouse.client.api.data_formats.internal that return TableSchemaModifier and TypeMethodDescriptionAbstractBinaryFormatReader.getSchema()BinaryReaderBackedRecord.getSchema()MapBackedRecord.getSchema()Methods in com.clickhouse.client.api.data_formats.internal with parameters of type TableSchemaModifier and TypeMethodDescriptionprotected voidAbstractBinaryFormatReader.setSchema(TableSchema schema) Constructors in com.clickhouse.client.api.data_formats.internal with parameters of type TableSchemaModifierConstructorDescriptionprotectedAbstractBinaryFormatReader(InputStream inputStream, QuerySettings querySettings, TableSchema schema, BinaryStreamReader.ByteBufferAllocator byteBufferAllocator) MapBackedRecord(Map<String, Object> record, Map[] columnConverters, TableSchema schema) -
Uses of TableSchema in com.clickhouse.client.api.internal
Methods in com.clickhouse.client.api.internal that return TableSchemaModifier and TypeMethodDescriptionstatic TableSchemaTableSchemaParser.readTSKV(InputStream content, String table, String sqlQuery, String database) -
Uses of TableSchema in com.clickhouse.client.api.query
Methods in com.clickhouse.client.api.query that return TableSchema