~mdcallag/+junk/5.1-map

« back to all changes in this revision

Viewing changes to storage/innobase/include/ha0ha.ic

  • Committer: msvensson at pilot
  • Date: 2007-04-24 09:11:45 UTC
  • mfrom: (2469.1.106)
  • Revision ID: sp1r-msvensson@pilot.blaudden-20070424091145-10463
Merge pilot.blaudden:/home/msvensson/mysql/my51-m-mysql_upgrade
into  pilot.blaudden:/home/msvensson/mysql/mysql-5.1-maint

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
{
82
82
        ha_node_t*      node;
83
83
 
84
 
#ifdef UNIV_SYNC_DEBUG
85
84
        ut_ad(!table->mutexes || mutex_own(hash_get_mutex(table, fold)));
86
 
#endif /* UNIV_SYNC_DEBUG */
87
85
 
88
86
        node = ha_chain_get_first(table, fold);
89
87
 
113
111
{
114
112
        ha_node_t*      node;
115
113
 
116
 
#ifdef UNIV_SYNC_DEBUG
117
114
        ut_ad(!table->mutexes || mutex_own(hash_get_mutex(table, fold)));
118
 
#endif /* UNIV_SYNC_DEBUG */
119
115
 
120
116
        node = ha_chain_get_first(table, fold);
121
117
 
145
141
{
146
142
        ha_node_t*      node;
147
143
 
148
 
#ifdef UNIV_SYNC_DEBUG
149
144
        ut_ad(!table->mutexes || mutex_own(hash_get_mutex(table, fold)));
150
 
#endif /* UNIV_SYNC_DEBUG */
151
145
 
152
146
        node = ha_chain_get_first(table, fold);
153
147
 
177
171
{
178
172
        ha_node_t*      node;
179
173
 
180
 
#ifdef UNIV_SYNC_DEBUG
181
174
        ut_ad(!table->mutexes || mutex_own(hash_get_mutex(table, fold)));
182
 
#endif /* UNIV_SYNC_DEBUG */
183
175
 
184
176
        node = ha_search_with_data(table, fold, data);
185
177