~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/eval/eval0proc.c

  • Committer: Stewart Smith
  • Author(s): Vasil Dimov, Stewart Smith
  • Date: 2010-12-20 02:24:00 UTC
  • mto: (2021.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2022.
  • Revision ID: stewart@flamingspork.com-20101220022400-0p9lvvppwgaowdju
Merge Revision revid:vasil.dimov@oracle.com-20101102165720-164z3666y3tut4c2 from MySQL InnoDB

Original revid:vasil.dimov@oracle.com-20101102165720-164z3666y3tut4c2

Original Authors: Vasil Dimov <vasil.dimov@oracle.com>
Original commit message:
Fix Bug#53046 dict_update_statistics_low can still be run concurrently on same table

Replace the array of mutexes that used to protect
dict_index_t::stat_n_diff_key_vals[] with an array of rw locks that protects
all the stats related members in dict_table_t and all of its indexes.

Approved by:    Jimmy (rb://503)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*****************************************************************************
2
2
 
3
 
Copyright (C) 1998, 2009, Innobase Oy. All Rights Reserved.
 
3
Copyright (c) 1998, 2009, Innobase Oy. All Rights Reserved.
4
4
 
5
5
This program is free software; you can redistribute it and/or modify it under
6
6
the terms of the GNU General Public License as published by the Free Software
43
43
 
44
44
        ut_ad(thr);
45
45
 
46
 
        node = static_cast<if_node_t *>(thr->run_node);
 
46
        node = thr->run_node;
47
47
        ut_ad(que_node_get_type(node) == QUE_NODE_IF);
48
48
 
49
49
        if (thr->prev_node == que_node_get_parent(node)) {
80
80
                                        break;
81
81
                                }
82
82
 
83
 
                                elsif_node = static_cast<elsif_node_t *>(que_node_get_next(elsif_node));
 
83
                                elsif_node = que_node_get_next(elsif_node);
84
84
 
85
85
                                if (elsif_node == NULL) {
86
86
                                        thr->run_node = NULL;
118
118
 
119
119
        ut_ad(thr);
120
120
 
121
 
        node = static_cast<while_node_t *>(thr->run_node);
 
121
        node = thr->run_node;
122
122
        ut_ad(que_node_get_type(node) == QUE_NODE_WHILE);
123
123
 
124
124
        ut_ad((thr->prev_node == que_node_get_parent(node))
154
154
 
155
155
        ut_ad(thr);
156
156
 
157
 
        node = static_cast<assign_node_t *>(thr->run_node);
 
157
        node = thr->run_node;
158
158
        ut_ad(que_node_get_type(node) == QUE_NODE_ASSIGNMENT);
159
159
 
160
160
        /* Evaluate the value to assign */
183
183
 
184
184
        ut_ad(thr);
185
185
 
186
 
        node = static_cast<for_node_t *>(thr->run_node);
 
186
        node = thr->run_node;
187
187
 
188
188
        ut_ad(que_node_get_type(node) == QUE_NODE_FOR);
189
189
 
244
244
 
245
245
        ut_ad(thr);
246
246
 
247
 
        node = static_cast<exit_node_t *>(thr->run_node);
 
247
        node = thr->run_node;
248
248
 
249
249
        ut_ad(que_node_get_type(node) == QUE_NODE_EXIT);
250
250
 
276
276
 
277
277
        ut_ad(thr);
278
278
 
279
 
        node = static_cast<return_node_t *>(thr->run_node);
 
279
        node = thr->run_node;
280
280
 
281
281
        ut_ad(que_node_get_type(node) == QUE_NODE_RETURN);
282
282