There was a regression in dolt that broke our search users query, and since the unit tests run against sqlite it wasn't caught until that dolt version was in production. This prevented people from adding users as collaborators or org members
This was the query that broke:
mysql> select * from users where name LIKE "tb%" and id not in ("1") and id != 0;
ERROR 1105 (HY000): expecting evaluation of IN expression right hand side to be a tuple, but it is string
There was a regression in dolt that broke our search users query, and since the unit tests run against sqlite it wasn't caught until that dolt version was in production. This prevented people from adding users as collaborators or org members
This was the query that broke: