~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Monty Taylor
  • Date: 2009-03-06 03:33:24 UTC
  • mfrom: (916.1.2 merge)
  • Revision ID: mordred@inaugust.com-20090306033324-dcedf80g9qzywbvu
Merged Brian's merge... re-rotate the 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
 
17
17
/**
25
25
    (This shouldn't be needed)
26
26
*/
27
27
 
28
 
#include "config.h"
 
28
#include <drizzled/server_includes.h>
 
29
#include <mysys/sha1.h>
29
30
#include <zlib.h>
30
31
#include <drizzled/query_id.h>
 
32
#include <uuid/uuid.h>
 
33
#include <drizzled/data_home.h>
31
34
#include <drizzled/error.h>
32
35
#include <drizzled/function/str/strfunc.h>
33
36
 
34
37
// For soundex_map
35
 
#include "drizzled/internal/my_static.h"
 
38
#include <mysys/my_static.h>
 
39
#include CMATH_H
 
40
 
 
41
#if defined(CMATH_NAMESPACE)
 
42
using namespace CMATH_NAMESPACE;
 
43
#endif
36
44
 
37
45
using namespace std;
38
46
 
39
 
namespace drizzled
40
 
{
41
 
 
42
 
Item_str_func::~Item_str_func() {}
43
 
 
44
47
bool Item_str_func::fix_fields(Session *session, Item **ref)
45
48
{
46
49
  bool res= Item_func::fix_fields(session, ref);
107
110
 
108
111
String my_empty_string("",default_charset_info);
109
112
 
110
 
} /* namespace drizzled */