MCPcopy Create free account
hub / github.com/ClickHouse/ClickHouse / LocalFormatError

Class LocalFormatError

src/Client/ClientBase.cpp:377–384  ·  view source on GitHub ↗

To cancel the query on local format error.

Source from the content-addressed store, hash-verified

375
376/// To cancel the query on local format error.
377class LocalFormatError : public Exception
378{
379public:
380 using Exception::Exception;
381
382 LocalFormatError * clone() const override { return new LocalFormatError(*this); }
383 void rethrow() const override { throw *this; } /// NOLINT(cert-err60-cpp)
384};
385
386/// Wrapper for write buffer to execute callback before flush.
387/// Used to prevent progress flickering.

Callers 2

onDataMethod · 0.85
initOutputFormatMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected