~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/heap/hp_rsame.cc

  • Committer: Monty Taylor
  • Date: 2010-08-12 20:27:32 UTC
  • mto: (1720.1.5 build)
  • mto: This revision was merged to the branch mainline in revision 1722.
  • Revision ID: mordred@inaugust.com-20100812202732-9kzchbkvkyki4n3u
Merged libdrizzle directly into tree.

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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
 
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
16
/* re-read current record */
17
17
 
34
34
  {
35
35
    if (inx < -1 || inx >= (int) share->keys)
36
36
    {
37
 
      return(errno= drizzled::HA_ERR_WRONG_INDEX);
 
37
      return(errno=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= drizzled::HA_ERR_RECORD_DELETED);
 
54
  return(errno=HA_ERR_RECORD_DELETED);
55
55
}