Open
Description
It seems more than 1 FixedString not work.
demo code:
let client = Client::default()
.with_url("http://localhost:8123")
.with_database("default");
client.query(r###"create table if not exists tpayment
(
code FixedString(8),
name String,
stock_code FixedString(8)
)
ENGINE = ReplacingMergeTree()
PRIMARY KEY (name);"###).execute().await.unwrap();
let mut insert = client.insert("tpayment").unwrap();
for _ in 0..10 {
insert.write(&TPayment {
code: "12345678".to_string(),
name: "foo".to_string(),
stock_code: "12345678".to_string(),
}).await.unwrap();
}
insert.end().await.unwrap();
let mut cursor = client
.query("SELECT ?fields FROM tpayment")
.fetch::<TPayment>().unwrap();
the panic information:
called `Result::unwrap()` on an `Err` value: BadResponse("Code: 33. DB::Exception: Cannot read all data. Bytes read: 3. Bytes expected: 53.: (at row 4)\n: While executing BinaryRowInputFormat. (CANNOT_READ_ALL_DATA) (version 21.12.3.32 (official build))")
thread 'store::clickhouse::clickhouse::tests::test' panicked at 'called `Result::unwrap()` on an `Err` value: BadResponse("Code: 33. DB::Exception: Cannot read all data. Bytes read: 3. Bytes expected: 53.: (at row 4)\n: While executing BinaryRowInputFormat. (CANNOT_READ_ALL_DATA) (version 21.12.3.32 (official build))")', data/src/store/clickhouse/clickhouse.rs:99:32
stack backtrace:
the call stack point to insert.end().await.unwrap();
rust version:
rustc 1.66.0-nightly (4a1467723 2022-09-23)
clickhouse version:
ClickHouse client version 21.12.3.32 (official build).