You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
we came up to an unexpected error while testing inserting duplicate rows in a db table with UNIQUE KEY constraint
The problem was traced to the errorcodes.txt and specifically the first line which is currently:
unique,2627,Violation of UNIQUE KEY constraint '%.ls'..
While it should be
unique,2627,Violation of UNIQUE KEY constraint '(\S+?)'..*
as all the other lines are. This should be some sort typo, which I have seen has also been transferred to the TDS project.
The text was updated successfully, but these errors were encountered:
Good finding, thanks! I missed to replace that somehow.
For now it should be in both repos. First I added it to tds_ecto and later introduced same thing in tds so I can migrate it there at some major version release. And hopefully make tds error labels similar to one that are in postgrex for some other ecto integration reasons.
Hello,
we came up to an unexpected error while testing inserting duplicate rows in a db table with UNIQUE KEY constraint
The problem was traced to the errorcodes.txt and specifically the first line which is currently:
unique,2627,Violation of UNIQUE KEY constraint '%.ls'..
While it should be
unique,2627,Violation of UNIQUE KEY constraint '(\S+?)'..*
as all the other lines are. This should be some sort typo, which I have seen has also been transferred to the TDS project.
The text was updated successfully, but these errors were encountered: