~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: vjsamuel1990 at gmail
  • Date: 2011-05-11 00:47:57 UTC
  • mfrom: (2306 drizzle)
  • mto: (2321.1.1 drizzle-trunk)
  • mto: This revision was merged to the branch mainline in revision 2326.
  • Revision ID: vjsamuel1990@gmail.com-20110511004757-oex1l3n1xyb2duqc
Merge uncommitted

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
using namespace std;
27
27
 
28
 
namespace drizzled
29
 
{
 
28
namespace drizzled {
30
29
 
31
30
String* Item_func_export_set::val_str(String* str)
32
31
{
73
72
    break;
74
73
  case 3:
75
74
    {
76
 
      /* errors is not checked - assume "," can always be converted */
77
 
      size_t errors;
78
 
      sep_buf.copy(STRING_WITH_LEN(","), &my_charset_bin, collation.collation, &errors);
 
75
      sep_buf.copy(STRING_WITH_LEN(","), collation.collation);
79
76
      sep = &sep_buf;
80
77
    }
81
78
    break;