diff options
author | unknown <heikki@hundin.mysql.fi> | 2003-12-13 01:31:59 +0200 |
---|---|---|
committer | unknown <heikki@hundin.mysql.fi> | 2003-12-13 01:31:59 +0200 |
commit | 691bd823b56ce44f0775661f06dc7eeb7320c915 (patch) | |
tree | 9f17ab7f196d035399a17e44f428da4b395e3937 /innobase/include/sync0sync.ic | |
parent | cd3548585ddbbb1d20f8bc1a6d8e2e064747c9fa (diff) | |
download | mariadb-git-691bd823b56ce44f0775661f06dc7eeb7320c915.tar.gz |
btr0cur.c, row0umod.c:
Fix bug: if one updated a secondary index column so that its alphabetical value did not change (e.g., abc -> aBc) and rolled back the update, InnoDB failed to return the value in the secondary index to its original value
row0upd.h:
Correct typing error
sync0sync.ic:
Remove inadvertently pushed sync debug code
innobase/include/sync0sync.ic:
Remove inadvertently pushed sync debug code
innobase/include/row0upd.h:
Correct typing error
innobase/row/row0umod.c:
Fix bug: if one updated a secondary index column so that its alphabetical value did not change (e.g., abc -> aBc) and rolled back the update, InnoDB failed to return the value in the secondary index to its original value
innobase/btr/btr0cur.c:
Fix bug: if one updated a secondary index column so that its alphabetical value did not change (e.g., abc -> aBc) and rolled back the update, InnoDB failed to return the value in the secondary index to its original value
Diffstat (limited to 'innobase/include/sync0sync.ic')
-rw-r--r-- | innobase/include/sync0sync.ic | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/innobase/include/sync0sync.ic b/innobase/include/sync0sync.ic index a9b511a7593..c11cc0d196e 100644 --- a/innobase/include/sync0sync.ic +++ b/innobase/include/sync0sync.ic @@ -257,8 +257,6 @@ mutex_enter_func( mutex->file_name = file_name; mutex->line = line; - mutex->thread_id = os_thread_get_curr_id(); - return; /* Succeeded! */ } |