~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump.c

  • Committer: Patrick Galbraith
  • Date: 2008-07-28 01:47:41 UTC
  • mto: (212.1.8 codestyle)
  • mto: This revision was merged to the branch mainline in revision 217.
  • Revision ID: patg@ishvara-20080728014741-yoasv5trt1ef9rha
Renamed FIELD_TYPE to DRIZZLE_TYPE

Show diffs side-by-side

added added

removed removed

Lines of Context:
2292
2292
           we'll dump in hex only BLOB columns.
2293
2293
        */
2294
2294
        is_blob= (opt_hex_blob && field->charsetnr == 63 &&
2295
 
                  (field->type == FIELD_TYPE_STRING ||
2296
 
                   field->type == FIELD_TYPE_VARCHAR ||
2297
 
                   field->type == FIELD_TYPE_BLOB)) ? 1 : 0;
 
2295
                  (field->type == DRIZZLE_TYPE_STRING ||
 
2296
                   field->type == DRIZZLE_TYPE_VARCHAR ||
 
2297
                   field->type == DRIZZLE_TYPE_BLOB)) ? 1 : 0;
2298
2298
        if (extended_insert && !opt_xml)
2299
2299
        {
2300
2300
          if (i == 0)