Open Paberu85 opened 6 years ago
As repo is alive and I see you'r ignoring this bug from commit to commit, try running this peace of code, maybe that will convince you to fix it and save anyone else from hassle of finding out why app crashes in production environment due to sqlite unique pk constraint with large amount of records.
BOOL conflict = NO;
do {
continue;
} while (conflict);
For the while and do...while loops, continue statement causes the program control pass to the conditional test - 'conflict' which is initialized to NO and never changed elsewhere.