Open ensean opened 1 week ago
CREATE TABLE salaries (
emp_no INT NOT NULL,
salary INT NOT NULL,
from_date DATE NOT NULL,
to_date DATE NOT NULL,
FOREIGN KEY (emp_no) REFERENCES employees (emp_no) ON DELETE CASCADE,
PRIMARY KEY (emp_no, from_date)
)
CREATE TABLE default.salaries4
(
`emp_no` UInt64,
`salary` UInt64,
`from_date` String,
`to_date` String
)
ENGINE = MergeTree
PRIMARY KEY (emp_no, from_date)
ORDER BY (emp_no, from_date)
Can I claim this bug?
Can I claim this bug?
good job, has assigned to you
Search before asking
What happened
Sync data from MySQL to clickhouse in CDC mode can not set composite primary key.
SeaTunnel Version
2.3.8
SeaTunnel Config
Running Command
Error Exception