1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008 Sun Microsystems
6
* This program is free software; you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License as published by
8
* the Free Software Foundation; version 2 of the License.
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
15
* You should have received a copy of the GNU General Public License
16
* along with this program; if not, write to the Free Software
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20
#include <drizzled/server_includes.h>
22
#include <drizzled/functions/str/right.h>
24
String *Item_func_right::val_str(String *str)
27
String *res= args[0]->val_str(str);
28
/* must be int64_t to avoid truncation */
29
int64_t length= args[1]->val_int();
31
if ((null_value=(args[0]->null_value || args[1]->null_value)))
32
return 0; /* purecov: inspected */
34
/* if "unsigned_flag" is set, we have a *huge* positive number. */
35
if ((length <= 0) && (!args[1]->unsigned_flag))
36
return &my_empty_string; /* purecov: inspected */
38
if (res->length() <= (uint64_t) length)
39
return res; /* purecov: inspected */
41
uint32_t start=res->numchars();
42
if (start <= (uint) length)
44
start=res->charpos(start - (uint) length);
45
tmp_value.set(*res,start,res->length()-start);
49
void Item_func_right::fix_length_and_dec()
51
collation.set(args[0]->collation);
52
left_right_max_length();