~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump.cc

  • Committer: Brian Aker
  • Date: 2008-12-15 07:27:18 UTC
  • mfrom: (670.1.24 devel)
  • Revision ID: brian@tangent.org-20081215072718-uf9nak79262b8snk
Merge of Monty's work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3251
3251
    while ((row= drizzle_fetch_row(res)) && atoi(row[3]) > 1)
3252
3252
    {
3253
3253
      quoted_field= quote_name(row[4], buff, 0);
3254
 
      end= strxmov(end, ",", quoted_field, NULL);
 
3254
      end+= sprintf(end,",%s",quoted_field);
3255
3255
    }
3256
3256
  }
3257
3257