~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzlecheck.cc

  • Committer: Brian Aker
  • Date: 2009-02-21 00:18:15 UTC
  • Revision ID: brian@tangent.org-20090221001815-x20e8h71e984lvs1
Completion (?) of uint conversion.

Show diffs side-by-side

added added

removed removed

Lines of Context:
678
678
    ptr= strcpy(ptr, " TABLE ")+7;
679
679
    ptr= fix_table_name(ptr, tables);
680
680
    ptr+= sprintf(ptr," %s",options);
681
 
    query_length= (uint) (ptr - query);
 
681
    query_length= (uint32_t) (ptr - query);
682
682
  }
683
683
  if (drizzleclient_real_query(sock, query, query_length))
684
684
  {