~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2009-06-03 19:30:45 UTC
  • mfrom: (1046.1.6 merge)
  • Revision ID: brian@gaz-20090603193045-4xgeczyfixh07beg
MergeĀ forĀ Brian

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>
36
39
 
37
40
using namespace std;
38
41
 
39
 
namespace drizzled
40
 
{
41
 
 
42
42
Item_str_func::~Item_str_func() {}
43
43
 
44
44
bool Item_str_func::fix_fields(Session *session, Item **ref)
107
107
 
108
108
String my_empty_string("",default_charset_info);
109
109
 
110
 
} /* namespace drizzled */