clickhouse-cpp icon indicating copy to clipboard operation
clickhouse-cpp copied to clipboard

C++ client library for ClickHouse

Results 86 clickhouse-cpp issues
Sort by recently updated
recently updated
newest added

Returns a new column of the proper type for inserting new values. Useful for contexts in which the item type isn't immediately known. Not a blocker for my project but...

Try implementing it as a number, just like `UInt8`. One test fails: ``` /Users/david/dev/clickhouse/clickhouse-cpp/ut/CreateColumnByType_ut.cpp:72: Failure Expected equality of these values: col->GetType().GetName() Which is: "UInt8" GetParam() Which is: "Bool" ``` It...

Implemented the same as String, which seems to work fine except for round-tripping. I assume it's not actually a string in the protocol so it will need a different format....

See https://github.com/ClickHouse/clickhouse-cpp/issues/284

As user of the library, the absence of support for move restricts design choices as it forces to use (smart or raw) ptr on Client or to make user classes...

I try to write a loader from TVS format. So i run the query like client.Execute("CREATE TEMPORARY TABLE IF NOT EXISTS test_client (id UInt64, name String)"); client.Execute("insert into test_client FORMAT...