~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/heap/hp_rsame.cc

move ATAN() and ATAN2() function into math_functions plugin. ATAN2() is just another instance of ATAN()

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
}