Skip to content

[Clickhouse] Array(Tuple) visualization is wrong #3965

@senabd

Description

@senabd

Description

I have an Array(Tuple) field in my table. When I view it in DBeaver, the Tuple fields display correctly, but in CloudBeaver they appear as strings.

Steps to reproduce

Create table

CREATE TABLE my_table
(
    Field Array(Tuple(
        Field1 String,
        Field2 Int64
    ))
)
ENGINE = MergeTree()
ORDER BY tuple();

Add some data

INSERT INTO my_table (Field)
VALUES
([
    ('a', 10),
    ('b', 20),
    ('c', 30)
]),
([
    ('x', 100),
    ('y', 200)
]);

View data:

SELECT * FROM my_table

Cloudbeaver view shows tuples as string

Image

Dbeaver view shows tuples as object:

Image Image

Expected/Desired Behavior

Dbeaver view should be desired behaviour

Image Image

CloudBeaver Version

latest

Additional context

Clickhouse version: 25.8.11.66

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions