Whenever you are attempting to sync any table that has the word "GO" in it, the sync will error.
And example would be TOOL_CATEGORIES
After looking at the code, it appears that the code is splitting the string on the word "GO" in order to precess thru the constraints, etc. As written, this causes a problem because it split in the middle of the table name.
I've updated the code on my system to split on "GO\r\n" instead, which seems to be working fine.
And example would be TOOL_CATEGORIES
After looking at the code, it appears that the code is splitting the string on the word "GO" in order to precess thru the constraints, etc. As written, this causes a problem because it split in the middle of the table name.
I've updated the code on my system to split on "GO\r\n" instead, which seems to be working fine.