Bugzilla – Attachment 140481 Details for
Bug 29409
Update for bug 25333 can fail due to bad data or constraints
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 29409: Check for existence of constraint before deletion
Bug-29409-Check-for-existence-of-constraint-before.patch (text/plain), 1.46 KB, created by
Martin Renvoize (ashimema)
on 2022-09-12 16:51:48 UTC
(
hide
)
Description:
Bug 29409: Check for existence of constraint before deletion
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2022-09-12 16:51:48 UTC
Size:
1.46 KB
patch
obsolete
>From f7d6e0492bcb93387a2a1a46e5eb1b8492a0dccb Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Wed, 3 Nov 2021 16:51:09 +0000 >Subject: [PATCH] Bug 29409: Check for existence of constraint before deletion >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >Signed-off-by: Joonas Kylmälä <joonas.kylmala@iki.fi> >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > installer/data/mysql/updatedatabase.pl | 9 +++++---- > 1 file changed, 5 insertions(+), 4 deletions(-) > >diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl >index 811b7ee632..8a02ead757 100755 >--- a/installer/data/mysql/updatedatabase.pl >+++ b/installer/data/mysql/updatedatabase.pl >@@ -23186,10 +23186,11 @@ $DBversion = '20.06.00.058'; > if( CheckVersion( $DBversion ) ) { > > # Adding the ON DELETE CASCASE ON UPDATE CASCADE, in case it's missing (from 9016 - 3.15.00.039) >- $dbh->do( q{ >- ALTER TABLE letter DROP FOREIGN KEY message_transport_type_fk >- } ); >- >+ if ( foreign_key_exists( 'letter', 'message_transport_type_fk' ) ) { >+ $dbh->do( q{ >+ ALTER TABLE letter DROP FOREIGN KEY message_transport_type_fk >+ } ); >+ } > $dbh->do( q{ > ALTER TABLE letter ADD CONSTRAINT message_transport_type_fk FOREIGN KEY (message_transport_type) REFERENCES message_transport_types(message_transport_type) ON DELETE CASCADE ON UPDATE CASCADE > } ); >-- >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 29409
:
127275
|
127276
|
139931
|
139932
| 140481 |
140482