~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2009-11-18 22:58:22 UTC
  • mto: (1223.1.1 push) (1226.1.2 push)
  • mto: This revision was merged to the branch mainline in revision 1224.
  • Revision ID: brian@gaz-20091118225822-4ryr9rviir23o0kr
Second pass through bugs related to CREATE TABLE LIKE

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
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
 
34
35
// For soundex_map
35
 
#include "drizzled/internal/my_static.h"
 
36
#include <mysys/my_static.h>
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 */