Uses of Class
com.clickhouse.client.ClickHouseException
Packages that use ClickHouseException
Package
Description
Provides necessary classes to communicate with ClickHouse server.
-
Uses of ClickHouseException in com.clickhouse.client
Subclasses of ClickHouseException in com.clickhouse.clientMethods in com.clickhouse.client that return ClickHouseExceptionModifier and TypeMethodDescriptionstatic ClickHouseExceptionClickHouseException.forCancellation(Exception e, ClickHouseNode server) Deprecated.Creates an exception for cancellation.static ClickHouseExceptionClickHouseException.of(String message, ClickHouseNode server) Deprecated.Creates an exception to encapsulate the given error message.static ClickHouseExceptionClickHouseException.of(Throwable e, ClickHouseNode server) Deprecated.Creates an exception to encapsulate cause of the given exception.Methods in com.clickhouse.client that throw ClickHouseExceptionModifier and TypeMethodDescriptionvoidClickHouseTransaction.begin()Deprecated.Starts a new transaction.voidClickHouseTransaction.begin(Map<String, Serializable> settings) Deprecated.Starts a new transaction with optional server settings.voidClickHouseTransaction.commit()Deprecated.Commits the transaction.voidClickHouseTransaction.commit(Map<String, Serializable> settings) Deprecated.Commits the transaction with optional server settings.ClickHouseRequestManager.createImplicitTransaction(ClickHouseRequest<?> request) Deprecated.Creates an implicit transaction.ClickHouseRequestManager.createTransaction(ClickHouseNode server, int timeout) Deprecated.Creates a new transaction.ClickHouseRequestManager.createTransaction(ClickHouseRequest<?> request) Deprecated.Creates a new transaction.ClickHouseRequestManager.createTransaction(ClickHouseRequest<?> request, int timeout) Deprecated.Creates a new transaction.protected voidClickHouseTransaction.ensureTransactionId()Deprecated.Ensures client and server are using the exact same transaction ID.default ClickHouseResponseClickHouseClient.executeAndWait(ClickHouseRequest<?> request) Deprecated.Synchronous version ofClickHouseClient.execute(ClickHouseRequest).ClickHouseRequest.executeAndWait()Deprecated.Synchronous version ofClickHouseRequest.execute().ClickHouseRequest.executeWithinTransaction()Deprecated.Executes the request within an implicit transaction.ClickHouseRequest.executeWithinTransaction(boolean useImplicitTransaction) Deprecated.will be removed in the future, once the minimum supported version of ClickHouse is 22.7 or aboveClickHouseRequestManager.getOrStartTransaction(ClickHouseRequest<?> request) Deprecated.Gets or starts a new transaction.ClickHouseRequestManager.getOrStartTransaction(ClickHouseRequest<?> request, int timeout) Deprecated.Gets or starts a new transaction.protected final ClickHouseRecordDeprecated.Issues transaction related query.protected ClickHouseRecordClickHouseTransaction.issue(String command, boolean sessionCheck, Map<String, Serializable> settings) Deprecated.Issues transaction related query.voidClickHouseTransaction.rollback()Deprecated.Rolls back the transaction.voidClickHouseTransaction.rollback(Map<String, Serializable> settings) Deprecated.Rolls back the transaction with optional server settings.protected abstract ClickHouseResponseAbstractClient.send(ClickHouseRequest<?> sealedRequest) Deprecated.Sends the request to server in a current thread.protected ClickHouseResponseAbstractClient.sendAsync(ClickHouseRequest<?> sealedRequest, Object... args) Deprecated.Sends the request to server in a separate thread.voidClickHouseTransaction.snapshot(long snapshotVersion) Deprecated.Sets transaction snapshot with optional server settings.voidClickHouseTransaction.snapshot(long snapshotVersion, Map<String, Serializable> settings) Deprecated.Sets transaction snapshot with optional server settings, only works forClickHouseTransaction.ACTIVEtransaction.ClickHouseRequest.transaction()Deprecated.Creates and starts a transaction.ClickHouseRequest.transaction(int timeout) Deprecated.Creates and starts a transaction immediately.ClickHouseRequest.transaction(ClickHouseTransaction transaction) Deprecated.Sets transaction.Constructors in com.clickhouse.client that throw ClickHouseExceptionModifierConstructorDescriptionprotectedClickHouseTransaction(ClickHouseNode server, int timeout, boolean implicit) Deprecated.Constructs a unique transaction inClickHouseTransaction.ACTIVEstate.