~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_select.cc

  • Committer: Grant Limberg
  • Date: 2008-08-12 21:13:01 UTC
  • mto: (322.1.1 codestyle)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: grant@glsoftware.net-20080812211301-ym3wsowelkgp16s2
renamed all instances of MYSQL_ to DRIZZLE_

Show diffs side-by-side

added added

removed removed

Lines of Context:
244
244
{
245
245
  bool res;
246
246
  register SELECT_LEX *select_lex = &lex->select_lex;
247
 
  MYSQL_SELECT_START();
 
247
  DRIZZLE_SELECT_START();
248
248
 
249
249
  if (select_lex->master_unit()->is_union() || 
250
250
      select_lex->master_unit()->fake_select_lex)
277
277
  if (unlikely(res))
278
278
    result->abort();
279
279
 
280
 
  MYSQL_SELECT_END();
 
280
  DRIZZLE_SELECT_END();
281
281
  return(res);
282
282
}
283
283