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
Join with a memory table does not work when selecting a string column
$ clickhouse-client
ClickHouse client version 18.10.3.
Connecting to localhost:9000 as user default.
Connected to ClickHouse server version 18.10.3 revision 54405.
:) show create table dict_table
SHOW CREATE TABLE dict_table
┌─statement────────────────────────────────────────────────────────────────────────────────────┐
│ CREATE TABLE test.dict_table ( key UInt64, source String) ENGINE = Dictionary(dim_netspeed) │
└──────────────────────────────────────────────────────────────────────────────────────────────┘
:) show create table test.mem_table
SHOW CREATE TABLE test.mem_table
┌─statement─────────────────────────────────────────────────┐
│ CREATE TABLE test.mem_table ( key UInt64) ENGINE = Memory │
└───────────────────────────────────────────────────────────┘
:) SELECT key, source FROM test.dict_table ALL INNER JOIN test.mem_table USING (key)
SELECT
key,
source
FROM test.dict_table
ALL INNER JOIN test.mem_table USING (key)
Received exception from server (version 18.10.3):
Code: 9. DB::Exception: Received from localhost:9000, ::1. DB::Exception: Size of offsets doesn't match size of column..
:) SELECT key FROM test.dict_table ALL INNER JOIN test.mem_table USING (key)
SELECT key
FROM test.dict_table
ALL INNER JOIN test.mem_table USING (key)
Ok.
Select of a string column from a dictionary table does not work (clickhouse-client only, works fine through HTTP)
The text was updated successfully, but these errors were encountered: