stephanie
stephanie
Bug is resolved: ``` $ dolt schema show data @ working CREATE TABLE `data` ( `id` int NOT NULL, `state_id` int, `data` varchar(500), PRIMARY KEY (`id`), KEY `state_id` (`state_id`), CONSTRAINT...
Issue seems to be resolved now, probably because of sql migration of `dolt diff` command. ``` $ dolt init Successfully initialized dolt data repository. $ dolt sql -q "create table...
The root cause is that `dolt table import -u` uses `INSERT INTO ... ON DUPLICATE KEY UPDATE ...` under the hood. There is a bug with `ON DUPLICATE KEY` where...