clickhouse 导入null数据报错,但是字段类型已经是nullable(string),大佬求解

我在阿里云的dms对clickhouse进行操作:

CREATE TABLE t_null(x Int8, y Int8) ENGINE TinyLog;
INSERT INTO t_null VALUES (1, NULL),(2, 3);

但是显示字符类型报错,有谁知道的吗?

报错内容:

ClickHouse exception, code: 62, host: 10.137.42.136, port: 44069; Code: 62, 
e.displayText() = DB::Exception: Cannot parse expression of type Nullable(Int8) here: \N),(2, 3) (version 20.3.10.75)

TraceId : 0bc3b4ab16110376719468556e3e00

你可能感兴趣的:(问题,数据库,大数据)