~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/item_timefunc.cc

  • Committer: Brian Aker
  • Date: 2008-07-07 16:07:49 UTC
  • mfrom: (80.1.1 food)
  • Revision ID: brian@tangent.org-20080707160749-qj89fnnwufz4xgop
Clean up install, we no longer have system tables.

Show diffs side-by-side

added added

removed removed

Lines of Context:
872
872
    longlong value;
873
873
    const char *start= str;
874
874
    for (value=0; str != end && my_isdigit(cs,*str) ; str++)
875
 
      value= value*LL(10) + (longlong) (*str - '0');
 
875
      value= value * 10LL + (longlong) (*str - '0');
876
876
    if (transform_msec && i == count - 1) // microseconds always last
877
877
    {
878
878
      long msec_length= 6 - (str - start);