Dhruv Sringari

Results 26 comments of Dhruv Sringari

Here is the repro: ```bash mkdir remote clone1 cd clone1 dolt init dolt sql -q "create table t (pk int primary key);" dolt commit -Am "commit1" dolt remote add origin...

Hey @Wuvist, thanks for the bug! I'll reproduce this and get a fix out. Just curious, what backend are you using for go-mysql-server? [Dolt](https://github.com/dolthub/dolt)?

MySQL says: > If you do not have a PRIMARY KEY and an application asks for the PRIMARY KEY in your tables, MySQL returns the first UNIQUE index that has...

Hey @Wuvist, I couldn't reproduce this issue using Dolt as a backend. Are you by chance running go-mysql-server with the memory engine?

The specific error message reported by the customer is: ``` ERROR 1105 (HY000): schema conflict found, merge aborted. Please alter schema to prevent schema conflicts before merging. schema conflicts for...

Investigating further, the customer's database clearly shows two different values in storage. On one branch the value is `("{\"free\": 1}")` and on another the value is `('{"free": 1}')`. We iterated...