~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mi_preload.c

  • Committer: Jay Pipes
  • Date: 2009-01-30 04:38:21 UTC
  • mto: This revision was merged to the branch mainline in revision 830.
  • Revision ID: jpipes@serialcoder-20090130043821-4d7jg2ftabefamxb
Fixes for the QUARTER() function to use new Temporal system and throw
errors on bad datetime values.

Added test case for QUARTER() function and modified func_time.test existing
test to correctly throw errors and report NULL, not 0 on NULL input.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
  SYNOPSIS
29
29
    mi_preload()
30
30
      info          open table
31
 
      map           map of indexes to preload into key cache 
 
31
      map           map of indexes to preload into key cache
32
32
      ignore_leaves only non-leaves pages are to be preloaded
33
33
 
34
34
  RETURN VALUE
71
71
  length= info->preload_buff_size/block_length * block_length;
72
72
  set_if_bigger(length, block_length);
73
73
 
74
 
  if (!(buff= (unsigned char *) my_malloc(length, MYF(MY_WME))))
 
74
  if (!(buff= (unsigned char *) malloc(length)))
75
75
    return(my_errno= HA_ERR_OUT_OF_MEM);
76
76
 
77
77
  if (flush_key_blocks(share->key_cache,share->kfile, FLUSH_RELEASE))