Description
Martin Renvoize (ashimema)
2019-02-19 11:45:57 UTC
Created attachment 85278 [details] [review] Bug 22636: Add missing constraints to `suggestions` Created attachment 85279 [details] [review] Bug 22368: Add missing constraints to `suggestions` Created attachment 85282 [details] [review] Bug 22368: Add missing constraints to `suggestions` Created attachment 85283 [details] [review] Bug 22368: Add tests Created attachment 85286 [details] [review] Bug 22368: Add missing constraints to `suggestions` Created attachment 85287 [details] [review] Bug 22368: Add tests Only issue with this now: it's noisy. Applied tests, and it failed as expected. Applied patch, and it passed, but it was noisier than expected. Is there any way to clean up the noise? I'm still going to sign off, but the noise is my only concern. Created attachment 85309 [details] [review] Bug 22368: Add tests Signed-off-by: Mark Tompsett <mtompset@hotmail.com> Created attachment 85310 [details] [review] Bug 22368: Add missing constraints to `suggestions` Signed-off-by: Mark Tompsett <mtompset@hotmail.com> I've solved that noise somewhere before.. I'll have a hunt around and remind myself how and add it as a follow-up. Thanks for the SO OK, I have no idea how to quiet those warnings.. perhaps a friendly QA person might add a QA followup and teach me how to do it ? Created attachment 85377 [details] [review] Bug 22368: Add tests Signed-off-by: Mark Tompsett <mtompset@hotmail.com> Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Created attachment 85378 [details] [review] Bug 22368: Add missing constraints to `suggestions` Signed-off-by: Mark Tompsett <mtompset@hotmail.com> Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Created attachment 85379 [details] [review] Bug 22368: (QA follow-up) Mute db errors in test Signed-off-by: Josef Moravec <josef.moravec@gmail.com> *** Bug 13533 has been marked as a duplicate of this bug. *** Awesome, thanks for the followup.. I'll bank that one for next time :). Created attachment 85388 [details] [review] Bug 22368: (QA follow-up) Missing comma in kohastructure.sql Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Madly enough.. I just found a typo in the second patch so I've fixed it with the QA follow-up.. Comment on attachment 85388 [details] [review] Bug 22368: (QA follow-up) Missing comma in kohastructure.sql Review of attachment 85388 [details] [review]: ----------------------------------------------------------------- You meant extra. :) Hehe, well, one extra and one missing. [U+1F609] It's so easy to make such a mistake in kohastructure during rebase.. I may try and write a test to catch such mistakes.. though that's for another bug and another day. *** Bug 13484 has been marked as a duplicate of this bug. *** C4::Installer::foreign_key_exists should be used here. NOT IN could (must?) be replaced with LEFT JOIN table SET attr_a = NULL WHERE attr_b IS NULL Regarding C4::Biblio::DelBiblio, suggestions_ibfk_biblionumber should ON DELETE CASCADE (instead of SET NULL). Same for suggestions_ibfk_branchcode? Marking as FQA/In discussion (In reply to Jonathan Druart from comment #22) > C4::Installer::foreign_key_exists should be used here. Happy to use this, though I used bug 21065 as an example.. do we need to fixup that one to use foreign_key_exists too? What do we win with the function vs my version.. (In reply to Jonathan Druart from comment #23) > NOT IN could (must?) be replaced with LEFT JOIN table SET attr_a = NULL > WHERE attr_b IS NULL Personally, I always find the NOT IN clearer than a LEFT JOIN.. and I thought the performance was pretty much the same as the mysql optimiser accounts for it. (In reply to Jonathan Druart from comment #24) > Regarding C4::Biblio::DelBiblio, suggestions_ibfk_biblionumber should ON > DELETE CASCADE (instead of SET NULL). > Same for suggestions_ibfk_branchcode? > > Marking as FQA/In discussion I did wonder about these too... I was hoping to spark such discussion with the submission of this bug, so thanks. I'm happy to agree that 'deleting a biblio should also delete any suggestions attached to it' and 'deleting a branch should also delete any suggestions attached'.. Josef do you concur/have any opinion? (In reply to Martin Renvoize from comment #27) > (In reply to Jonathan Druart from comment #24) > > Regarding C4::Biblio::DelBiblio, suggestions_ibfk_biblionumber should ON > > DELETE CASCADE (instead of SET NULL). > > Same for suggestions_ibfk_branchcode? > > > > Marking as FQA/In discussion > > I did wonder about these too... I was hoping to spark such discussion with > the submission of this bug, so thanks. > > I'm happy to agree that 'deleting a biblio should also delete any > suggestions attached to it' and 'deleting a branch should also delete any > suggestions attached'.. Josef do you concur/have any opinion? I think I'd prefer NULL in both cases as suggestions are perfectly fine without a branch and a biblionumber, both are optional right now. Deleting library: Should be a really rare case. I think at the moment we warn if there are patrons and items for the library before deleting. Should this be extended to cover suggestions as well? I think I'd prefer resetting to NULL (any library) to deleting. It seems the less dangerous and a patron from another library could have made the suggestion to begin with (or anonymous) and another library still might want to process it or inform the patron. Deleting biblio: This one is harder, I think I like NULL better, because the suggestion doesn't need the link, it's optional as it's only added when the suggestion is ordered. A use case where this might happen is: A patron makes a suggestion, it's ordered, it's 'sold out' and the order is cancelled deleting the record along with it. You might want to reset the status of the suggestion and try another vendor or inform the patron. I might think about this from the wrong direction, but maybe it adds to the discussion :) (In reply to Martin Renvoize from comment #26) > (In reply to Jonathan Druart from comment #23) > > NOT IN could (must?) be replaced with LEFT JOIN table SET attr_a = NULL > > WHERE attr_b IS NULL > > Personally, I always find the NOT IN clearer than a LEFT JOIN.. and I > thought the performance was pretty much the same as the mysql optimiser > accounts for it. I do find the NOT IN syntax more readable too.. (In reply to Katrin Fischer from comment #28) > (In reply to Martin Renvoize from comment #27) > > (In reply to Jonathan Druart from comment #24) > > > Regarding C4::Biblio::DelBiblio, suggestions_ibfk_biblionumber should ON > > > DELETE CASCADE (instead of SET NULL). > > > Same for suggestions_ibfk_branchcode? > > > > > > Marking as FQA/In discussion > > > > I did wonder about these too... I was hoping to spark such discussion with > > the submission of this bug, so thanks. > > > > I'm happy to agree that 'deleting a biblio should also delete any > > suggestions attached to it' and 'deleting a branch should also delete any > > suggestions attached'.. Josef do you concur/have any opinion? > > I think I'd prefer NULL in both cases as suggestions are perfectly fine > without a branch and a biblionumber, both are optional right now. > > Deleting library: > Should be a really rare case. I think at the moment we warn if there are > patrons and items for the library before deleting. Should this be extended > to cover suggestions as well? > I think I'd prefer resetting to NULL (any library) to deleting. It seems the > less dangerous and a patron from another library could have made the > suggestion to begin with (or anonymous) and another library still might want > to process it or inform the patron. > > Deleting biblio: > This one is harder, I think I like NULL better, because the suggestion > doesn't need the link, it's optional as it's only added when the suggestion > is ordered. > A use case where this might happen is: A patron makes a suggestion, it's > ordered, it's 'sold out' and the order is cancelled deleting the record > along with it. You might want to reset the status of the suggestion and try > another vendor or inform the patron. > > I might think about this from the wrong direction, but maybe it adds to the > discussion :) I do prefer to SET NULL on both, as Katrin said, somebody can reuse it then... for example deleting it after deleting order and biblio is a side effect from my point of view - we are not working with suggestions and some suggestion can be deleted, even without a notice - it is weird. Created attachment 85608 [details] [review] Bug 22368: Add tests Signed-off-by: Mark Tompsett <mtompset@hotmail.com> Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Created attachment 85609 [details] [review] Bug 22368: Add missing constraints to `suggestions` Signed-off-by: Mark Tompsett <mtompset@hotmail.com> Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Created attachment 85610 [details] [review] Bug 22368: (QA follow-up) Mute db errors in test Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Created attachment 85611 [details] [review] Bug 22368: (QA follow-up) Missing comma in kohastructure.sql Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Created attachment 85612 [details] [review] Bug 22368: (QA follow-up) Switch to using foreign_key_exists Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Created attachment 85723 [details] [review] Bug 22368: Add tests Signed-off-by: Mark Tompsett <mtompset@hotmail.com> Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Created attachment 85725 [details] [review] Bug 22368: Add missing constraints to `suggestions` Signed-off-by: Mark Tompsett <mtompset@hotmail.com> Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Created attachment 85726 [details] [review] Bug 22368: (QA follow-up) Mute db errors in test Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Created attachment 85727 [details] [review] Bug 22368: (QA follow-up) Missing comma in kohastructure.sql Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Created attachment 85728 [details] [review] Bug 22368: (QA follow-up) Switch to using foreign_key_exists Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Created attachment 85729 [details] [review] Bug 22368: (QA follow-up) Changed to LEFT JOIN as requested Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Created attachment 85739 [details] [review] Bug 22368: Add tests Signed-off-by: Mark Tompsett <mtompset@hotmail.com> Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Created attachment 85742 [details] [review] Bug 22368: Add tests Signed-off-by: Mark Tompsett <mtompset@hotmail.com> Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Created attachment 85743 [details] [review] Bug 22368: Add missing constraints to `suggestions` Signed-off-by: Mark Tompsett <mtompset@hotmail.com> Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Created attachment 85744 [details] [review] Bug 22368: (QA follow-up) Mute db errors in test Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Created attachment 85745 [details] [review] Bug 22368: (QA follow-up) Missing comma in kohastructure.sql Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Created attachment 85746 [details] [review] Bug 22368: (QA follow-up) Switch to using foreign_key_exists Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Created attachment 85747 [details] [review] Bug 22368: (QA follow-up) Changed to LEFT JOIN as requested Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Created attachment 85754 [details] [review] Bug 22368: Make sure the tests will always pass Who knows! Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Awesome work all! Pushed to master for 19.05 Enhancement will not be backported to 18.11.x series. *** Bug 22756 has been marked as a duplicate of this bug. *** *** Bug 22758 has been marked as a duplicate of this bug. *** I think I have a blocker for 19.05, see bug 22905. suggestions.branchcode may be set to __ANY__ prior to this patch, and so the constraint will not be created. (In reply to Jonathan Druart from comment #54) > I think I have a blocker for 19.05, see bug 22905. > > suggestions.branchcode may be set to __ANY__ prior to this patch, and so the > constraint will not be created. Nevermind, it will be set to NULL. Sorry for the noise! However bug 22905 is still valid, the suggestion will not be accepted. |