TimonKK / clickhouse

NodeJS client for ClickHouse
Apache License 2.0
221 stars 122 forks source link

Unable to insert data of Map. #145

Open lovelytan opened 1 year ago

lovelytan commented 1 year ago
CREATE TABLE IF NOT EXISTS db_ide.test (
    id Int8,
    data Map(String, String)
) ENGINE = MergeTree
ORDER BY (id);
  await clickhouse.insert(
    `insert into db.test (id, data)`,
    {
      id: 11,
      data: {a : '123'}
    }
  ).toPromise()

result: Failed to insert data. it's empty in database;

ps. this merge resolved #123