~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to storage/falcon/TableAttachment.cpp

manual merge 6.0-main --> 6.0-bka-review

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 
37
37
void TableAttachment::postCommit(Table *table, RecordVersion * record)
38
38
{
39
 
        if (!record->priorVersion)
 
39
        if (!record->getPriorVersion())
40
40
                insertCommit (table, record);
41
41
        else if (!record->hasRecord())
42
 
                deleteCommit (table, record->priorVersion);
 
42
                deleteCommit (table, record->getPriorVersion());
43
43
        else
44
44
                updateCommit (table, record);
45
45
}