I'm very new to Clickhouse and my first attempts seem to always generate this kind of output for SELECT:
:) select * from test
SELECT *
FROM test
┌─s───┬───i─┐
│ foo │ 123 │
└─────┴─────┘
┌─s───┬───i─┐
│ bar │ 567 │
└─────┴─────┘
I would expect something like:
┌─s───┬───i─┐
│ foo │ 123 │
│ bar │ 567 │
└─────┴─────┘
Why do I get separate rows ? Is it caused by the table structure ? Here's the structure of the test
table:
CREATE TABLE test
(
s String,
i UInt64
) ENGINE = Memory