You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a Python program with asynch library. I insert the data that I cannot validate beforehand, and because of that, we can insert UInt64 data into UInt32 field and that returns
Code: 53. Type mismatch in VALUES section. Repeat query with types_check=True for detailed info. Column ie: argument out of range
I handle that error and try to insert the data once again, but Clickhouse hangs up the connection with a new error: Code: 33. DB::Exception: Cannot read all data in NativeBlockInputStream.
@knucklesuganda , hello. The Pool API underwent some changes, could you adapt your example to the current state in the dev branch and confirm the status of this issue?
I have a Python program with asynch library. I insert the data that I cannot validate beforehand, and because of that, we can insert UInt64 data into UInt32 field and that returns
I handle that error and try to insert the data once again, but Clickhouse hangs up the connection with a new error:
Code: 33. DB::Exception: Cannot read all data in NativeBlockInputStream
.Release: v21.9.4.35-stable
Environment: Docker
How to reproduce
CREATE TABLE IF NOT EXISTS test(data UInt32) ENGINE = MergeTree() ORDER BY(data) PRIMARY KEY (data) PARTITION BY (data)
[(429496729500,)] + [(x,) for x in range(100)]
INSERT INTO test(data) VALUES
Expected behavior
Error message and/or stacktrace
Additional context
The text was updated successfully, but these errors were encountered: