Andrew Psaltis

Results 8 comments of Andrew Psaltis

Hi, I'm getting a very similar issue, get this error message: BadResponse("Code: 33. DB::Exception: Cannot read all data. Bytes read: 0. Bytes expected: 1.: (at row 13)\n: While executing BinaryRowInputFormat....

as an update, I was using chrono for DateTime and after seeing [this issue and re-reading that time support](https://github.com/loyd/clickhouse.rs/issues/105), I switched over from chrono to time and still have same...

Hi @riccardogabellone -- here is the data structure: `#[derive(Row,Debug, Deserialize, Serialize)] struct AiLiteracyRow { #[serde(with = "clickhouse::serde::time::datetime")] created_on_timestamp: OffsetDateTime, #[serde(with = "clickhouse::serde::time::datetime")] last_update_timestamp: OffsetDateTime, organization_id: String, user_id: String, raw_results: String,...

just changed the "raw_results" which was a JSON string to be just.a string literal "some_data" and now got back a different error: BadResponse("Code: 33. DB::Exception: Cannot read all data. Bytes...

Sorry, should have included that: `CREATE TABLE default .ai_literacy ( `created_on_timestamp` DateTime64(3), `last_update_timestamp` DateTime64(3), `organization_id` Nullable(String), `user_id` Nullable(String), `raw_results` Nullable(String), `ethics_assessed_score` Nullable(Int32), `ethics_self_score_avg` Nullable(Int32), `ethics_self_score_strongly_disagree_count` Nullable(Int32), `ethics_self_score_disagree_count` Nullable(Int32), `ethics_self_score_somewhat_disagree_count` Nullable(Int32),...

Hi @riccardogabellone - RE: the `ai_*` JSON array values, are actually Vec in the incoming data and then they are converted like this: `ai_137: response.answers.ai_137.join(", ")` - RE: `Nullable` --...

Hi @riccardogabellone , I've run into this again, not a show stopper, but more connivence. I have a table that has an Array(UUID) when I then try and serialize a...

Sounds good @loyd -- let me take a stab at implementing this and submit a pr.