~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/memory/hp_rsame.cc

  • Committer: Brian Aker
  • Date: 2011-01-12 02:29:00 UTC
  • mfrom: (2068.7.5 session-fix)
  • mto: This revision was merged to the branch mainline in revision 2077.
  • Revision ID: brian@gir-3-20110112022900-ash0in3luysxzpvl
MergeĀ inĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
  {
35
35
    if (inx < -1 || inx >= (int) share->keys)
36
36
    {
37
 
      return(errno=HA_ERR_WRONG_INDEX);
 
37
      return(errno= drizzled::HA_ERR_WRONG_INDEX);
38
38
    }
39
39
    else if (inx != -1)
40
40
    {
51
51
  }
52
52
  info->update=0;
53
53
 
54
 
  return(errno=HA_ERR_RECORD_DELETED);
 
54
  return(errno= drizzled::HA_ERR_RECORD_DELETED);
55
55
}