Changing the default clickhouse server response format to JSON
The clickhouse http interface uses TSV(tab separated) as the default response format.
CREATE TABLE users (uid Int16, name String, age Int16) ENGINE=Memory;
INSERT INTO users VALUES (1231, 'John', 33);
INSERT INTO users VALUES (6666, 'Ksenia', 48);
I...
exp.amal.sh1 min read