~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/str/strfunc.cc

  • Committer: Monty Taylor
  • Date: 2010-01-02 05:11:55 UTC
  • mto: (1259.3.1 build)
  • mto: This revision was merged to the branch mainline in revision 1262.
  • Revision ID: mordred@inaugust.com-20100102051155-akdm8w5rr6xwzayu
pandora-build - proper detection of memcached.

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
 
17
17
/**
28
28
#include "config.h"
29
29
#include <zlib.h>
30
30
#include <drizzled/query_id.h>
 
31
#include <uuid/uuid.h>
31
32
#include <drizzled/error.h>
32
33
#include <drizzled/function/str/strfunc.h>
33
34
 
36
37
 
37
38
using namespace std;
38
39
 
39
 
namespace drizzled
40
 
{
41
 
 
42
40
Item_str_func::~Item_str_func() {}
43
41
 
44
42
bool Item_str_func::fix_fields(Session *session, Item **ref)
107
105
 
108
106
String my_empty_string("",default_charset_info);
109
107
 
110
 
} /* namespace drizzled */