~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/sql_parse.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:
1048
1048
    if (!(uptime= (ulong) (thd->start_time - server_start_time)))
1049
1049
      queries_per_second1000= 0;
1050
1050
    else
1051
 
      queries_per_second1000= thd->query_id * LL(1000) / uptime;
 
1051
      queries_per_second1000= thd->query_id * 1000LL / uptime;
1052
1052
 
1053
1053
    length= my_snprintf((char*) buff, buff_len - 1,
1054
1054
                        "Uptime: %lu  Threads: %d  Questions: %lu  "