~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.cc

  • Committer: Monty Taylor
  • Date: 2008-11-18 22:12:56 UTC
  • mto: (589.1.3 devel)
  • mto: This revision was merged to the branch mainline in revision 589.
  • Revision ID: monty@inaugust.com-20081118221256-ap2kmj073pdw7uap
The mega-patch from hell. Renamed sql_class to session (since that's what it is) and removed it and field and table from common_includes. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
#include <drizzled/data_home.h>
31
31
#include <drizzled/item/cmpfunc.h>
32
32
#include <drizzled/virtual_column_info.h>
 
33
#include <drizzled/sql_base.h>
 
34
#include <drizzled/db.h>
33
35
 
34
36
#include <string>
35
37
 
1179
1181
        {
1180
1182
          /* 
1181
1183
            query_length is always set to 0 when we set query = NULL; see
1182
 
            the comment in sql_class.h why this prevents crashes in possible
 
1184
                  the comment in session.h why this prevents crashes in possible
1183
1185
            races with query_length
1184
1186
          */
1185
1187
          uint32_t length= cmin((uint32_t)max_query_length, tmp->query_length);