Modify

Opened 11 years ago

Closed 7 years ago

Last modified 7 years ago

#11253 closed defect (fixed)

[patch] model.py/save(): INSERT INTO ticket_custom actually never called

Reported by: lostpoint Owned by: Ryan J Ollos
Priority: normal Component: MasterTicketsPlugin
Severity: normal Keywords:
Cc: Trac Release:

Description (last modified by Ryan J Ollos)

from model.py:

cursor.execute('UPDATE ticket_custom SET value=%s WHERE ticket=%s AND name=%s',
                                   (new_value, n, field))
# refresh the changetime to prevent concurrent edits
                    cursor.execute('UPDATE ticket SET changetime=%s WHERE id=%s', (when_ts, n))

if not cursor.rowcount:
    cursor.execute('INSERT INTO ticket_custom (ticket, name, value) VALUES (%s, %s, %s)',
                                       (n, field, new_value))

Since there is UPDATE ticket" between "UPDATE ticket_custom and if not cursor.rowcount, INSERT INTO ticket_custom is actually never called, because UPDATE ticket is always OK, no matter if UPDATE ticket_custom completed successfully or there is no such record.

Got this issue on a legacy database where tickets do not have corresponding ticket_custom values for blockedby and blocked.

I did a patch for this issue, you just have to move UPDATE ticket below if not cursor.rowcount - INSERT INTO ticket custom block.

Attachments (1)

ticket_custom.patch (1.0 KB) - added by lostpoint 11 years ago.

Download all attachments as: .zip

Change History (5)

Changed 11 years ago by lostpoint

Attachment: ticket_custom.patch added

comment:1 Changed 10 years ago by Ryan J Ollos

Description: modified (diff)
Status: newaccepted

comment:2 Changed 10 years ago by Ryan J Ollos

Status: acceptedassigned

comment:3 Changed 7 years ago by Ryan J Ollos

Resolution: fixed
Status: assignedclosed

In 16039:

4.0.0dev: Default old_value to None, so that it maps to NULL

Fixes #11253.

comment:4 Changed 7 years ago by Ryan J Ollos

I think this was fixed in r16037, however I introduced a regression in that changeset that was fixed in r16039.

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain Ryan J Ollos.
The resolution will be deleted. Next status will be 'reopened'.

Add Comment


E-mail address and name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.