~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/mi_range.cc

  • Committer: Daniel Nichter
  • Date: 2011-10-23 16:01:37 UTC
  • mto: This revision was merged to the branch mainline in revision 2448.
  • Revision ID: daniel@percona.com-20111023160137-7ac3blgz8z4tf8za
Add Administration Getting Started and Logging.  Capitalize SQL clause keywords.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
   You should have received a copy of the GNU General Public License
13
13
   along with this program; if not, write to the Free Software
14
 
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
 
14
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
15
15
 
16
16
/*
17
17
  Gives a approximated number of how many records there is between two keys.
18
18
  Used when optimizing querries.
19
19
 */
20
20
 
21
 
#include "myisamdef.h"
 
21
#include "myisam_priv.h"
 
22
 
 
23
using namespace drizzled;
22
24
 
23
25
static ha_rows _mi_record_pos(MI_INFO *, const unsigned char *, key_part_map,
24
26
                              enum ha_rkey_function);
25
 
static double _mi_search_pos(MI_INFO *,MI_KEYDEF *,unsigned char *, uint,uint,my_off_t);
 
27
static double _mi_search_pos(MI_INFO *,MI_KEYDEF *,unsigned char *, uint,uint,internal::my_off_t);
26
28
static uint32_t _mi_keynr(MI_INFO *info,MI_KEYDEF *,unsigned char *, unsigned char *,uint32_t *);
27
29
 
28
30
/*
42
44
    HA_POS_ERROR  error (or we can't estimate number of rows)
43
45
    number        Estimated number of rows
44
46
*/
45
 
  
 
47
 
46
48
ha_rows mi_records_in_range(MI_INFO *info, int inx,
47
49
                            key_range *min_key, key_range *max_key)
48
50
{
54
56
  if (fast_mi_readinfo(info))
55
57
    return(HA_POS_ERROR);
56
58
  info->update&= (HA_STATE_CHANGED+HA_STATE_ROW_CHANGED);
57
 
  if (info->s->concurrent_insert)
58
 
    rw_rdlock(&info->s->key_root_lock[inx]);
59
59
 
60
60
  switch(info->s->keyinfo[inx].key_alg){
61
61
  case HA_KEY_ALG_BTREE:
72
72
      res=HA_POS_ERROR;
73
73
  }
74
74
 
75
 
  if (info->s->concurrent_insert)
76
 
    rw_unlock(&info->s->key_root_lock[inx]);
77
75
  fast_mi_writeinfo(info);
78
76
 
79
77
  return(res);
151
149
static double _mi_search_pos(register MI_INFO *info,
152
150
                             register MI_KEYDEF *keyinfo,
153
151
                             unsigned char *key, uint32_t key_len, uint32_t nextflag,
154
 
                             register my_off_t pos)
 
152
                             register internal::my_off_t pos)
155
153
{
156
154
  int flag;
157
155
  uint32_t nod_flag, keynr, max_keynr= 0;