~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/option.cc

  • Committer: Lee Bieber
  • Date: 2011-02-18 23:49:00 UTC
  • mfrom: (2182.1.4 build)
  • Revision ID: kalebral@gmail.com-20110218234900-7zxzvw9x7e7zwflr
Merge Brian - add safe_delete()
Merge Stewart - 720552: doStartIndexScan return code ignored in optimizer::sum_query() for MIN() optimization 
Merge Olaf - add register keyword
Merge Patrick - 720813: syntax error in dbqp that is breaking it

Show diffs side-by-side

added added

removed removed

Lines of Context:
724
724
2.) Returns -1 if strings differ, 0 if they are equal
725
725
   */
726
726
 
727
 
  bool getopt_compare_strings(register const char *s, register const char *t,
 
727
  bool getopt_compare_strings(const char *s, const char *t,
728
728
      uint32_t length)
729
729
  {
730
730
    char const *end= s + length;