~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.cc

  • Committer: Jay Pipes
  • Date: 2008-08-01 04:24:45 UTC
  • mto: (264.1.6 codestyle)
  • mto: This revision was merged to the branch mainline in revision 247.
  • Revision ID: jay@mysql.com-20080801042445-1hrxlgfx4w7xe2x1
* Pulled the remainder of the log and parse stuff out into
  appropriate header files and cleaned up some of the enums...
* Builds and tests just fine

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
  @{
25
25
*/
26
26
 
27
 
static bool execute_sqlcom_select(THD *thd, TABLE_LIST *all_tables);
28
27
 
29
28
const char *any_db="*any*";     // Special symbol for check_access
30
29
 
2639
2638
  return(res || thd->is_error());
2640
2639
}
2641
2640
 
2642
 
 
2643
 
static bool execute_sqlcom_select(THD *thd, TABLE_LIST *all_tables)
 
2641
bool execute_sqlcom_select(THD *thd, TABLE_LIST *all_tables)
2644
2642
{
2645
2643
  LEX   *lex= thd->lex;
2646
2644
  select_result *result=lex->result;