Bugzilla – Attachment 85612 Details for
Bug 22368
Table suggestions lacks foreign key constraints
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 22368: (QA follow-up) Switch to using foreign_key_exists
Bug-22368-QA-follow-up-Switch-to-using-foreignkeye.patch (text/plain), 4.46 KB, created by
Martin Renvoize (ashimema)
on 2019-02-25 12:40:26 UTC
(
hide
)
Description:
Bug 22368: (QA follow-up) Switch to using foreign_key_exists
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2019-02-25 12:40:26 UTC
Size:
4.46 KB
patch
obsolete
>From 6e26a380a8e09ab8985ec275b958fadd7ffd3f9b Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Mon, 25 Feb 2019 12:39:19 +0000 >Subject: [PATCH] Bug 22368: (QA follow-up) Switch to using foreign_key_exists > >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > .../data/mysql/atomicupdate/bug_22368.perl | 39 ++++--------------- > 1 file changed, 7 insertions(+), 32 deletions(-) > >diff --git a/installer/data/mysql/atomicupdate/bug_22368.perl b/installer/data/mysql/atomicupdate/bug_22368.perl >index f158556e40..40c6edfb8d 100644 >--- a/installer/data/mysql/atomicupdate/bug_22368.perl >+++ b/installer/data/mysql/atomicupdate/bug_22368.perl >@@ -2,11 +2,7 @@ $DBversion = 'XXX'; # will be replaced by the RM > if ( CheckVersion($DBversion) ) { > > # Add constraint for suggestedby >- my $sth = $dbh->prepare( >-q|SELECT * FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE CONSTRAINT_NAME='suggestions_ibfk_suggestedby'| >- ); >- $sth->execute; >- unless ( $sth->fetchrow_hashref ) { >+ unless( foreign_key_exists( 'suggestions', 'suggestions_ibfk_suggestedby' ) ) { > $dbh->do("ALTER TABLE suggestions CHANGE COLUMN suggestedby suggestedby INT(11) NULL DEFAULT NULL;"); > $dbh->do( > "UPDATE suggestions SET suggestedby = NULL where suggestedby NOT IN (SELECT borrowernumber FROM borrowers)" >@@ -17,11 +13,7 @@ q|SELECT * FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE CONSTRAINT_NAME='sugg > } > > # Add constraint for managedby >- $sth = $dbh->prepare( >-q|SELECT * FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE CONSTRAINT_NAME='suggestions_ibfk_managedby'| >- ); >- $sth->execute; >- unless ( $sth->fetchrow_hashref ) { >+ unless( foreign_key_exists( 'suggestions', 'suggestions_ibfk_managedby' ) ) { > $dbh->do( > "UPDATE suggestions SET managedby = NULL where managedby NOT IN (SELECT borrowernumber FROM borrowers)" > ); >@@ -31,11 +23,7 @@ q|SELECT * FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE CONSTRAINT_NAME='sugg > } > > # Add constraint for acceptedby >- $sth = $dbh->prepare( >-q|SELECT * FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE CONSTRAINT_NAME='suggestions_ibfk_acceptedby'| >- ); >- $sth->execute; >- unless ( $sth->fetchrow_hashref ) { >+ unless( foreign_key_exists( 'suggestions', 'suggestions_ibfk_acceptedby' ) ) { > $dbh->do( > "UPDATE suggestions SET acceptedby = NULL where acceptedby NOT IN (SELECT borrowernumber FROM borrowers)" > ); >@@ -45,11 +33,7 @@ q|SELECT * FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE CONSTRAINT_NAME='sugg > } > > # Add constraint for rejectedby >- $sth = $dbh->prepare( >-q|SELECT * FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE CONSTRAINT_NAME='suggestions_ibfk_rejectedby'| >- ); >- $sth->execute; >- unless ( $sth->fetchrow_hashref ) { >+ unless( foreign_key_exists( 'suggestions', 'suggestions_ibfk_rejectedby' ) ) { > $dbh->do( > "UPDATE suggestions SET rejectedby = NULL where rejectedby NOT IN (SELECT borrowernumber FROM borrowers)" > ); >@@ -59,11 +43,7 @@ q|SELECT * FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE CONSTRAINT_NAME='sugg > } > > # Add constraint for biblionumber >- $sth = $dbh->prepare( >-q|SELECT * FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE CONSTRAINT_NAME='suggestions_ibfk_biblionumber'| >- ); >- $sth->execute; >- unless ( $sth->fetchrow_hashref ) { >+ unless( foreign_key_exists( 'suggestions', 'suggestions_ibfk_biblionumber' ) ) { > $dbh->do( > "UPDATE suggestions SET biblionumber = NULL where biblionumber NOT IN (SELECT biblionumber FROM biblio)" > ); >@@ -73,11 +53,7 @@ q|SELECT * FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE CONSTRAINT_NAME='sugg > } > > # Add constraint for branchcode >- $sth = $dbh->prepare( >-q|SELECT * FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE CONSTRAINT_NAME='suggestions_ibfk_branchcode'| >- ); >- $sth->execute; >- unless ( $sth->fetchrow_hashref ) { >+ unless( foreign_key_exists( 'suggestions', 'suggestions_ibfk_branchcode' ) ) { > $dbh->do( > "UPDATE suggestions SET branchcode = NULL where branchcode NOT IN (SELECT branchcode FROM branches)" > ); >@@ -87,6 +63,5 @@ q|SELECT * FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE CONSTRAINT_NAME='sugg > } > > SetVersion($DBversion); >- print >-"Upgrade to $DBversion done (Bug 22368 - Add missing constraints to suggestions)\n"; >+ print "Upgrade to $DBversion done (Bug 22368 - Add missing constraints to suggestions)\n"; > } >-- >2.20.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 22368
:
85278
|
85279
|
85282
|
85283
|
85286
|
85287
|
85309
|
85310
|
85377
|
85378
|
85379
|
85388
|
85608
|
85609
|
85610
|
85611
|
85612
|
85723
|
85725
|
85726
|
85727
|
85728
|
85729
|
85739
|
85742
|
85743
|
85744
|
85745
|
85746
|
85747
|
85754