~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item.cc

  • Committer: Brian Aker
  • Date: 2009-02-12 22:59:43 UTC
  • mfrom: (873.1.8 temporal-new)
  • Revision ID: brian@tangent.org-20090212225943-g2fh9aaw82sg9hko
Merge Jay.

Show diffs side-by-side

added added

removed removed

Lines of Context:
297
297
                      collation.collation);
298
298
}
299
299
 
300
 
 
301
300
Item::Item():
302
301
  is_expensive_cache(-1), name(0), orig_name(0), max_length(0), name_length(0),
303
302
  unsigned_flag(false), fixed(0), is_autogenerated_name(true),
325
324
  {
326
325
    enum_parsing_place place=
327
326
      session->lex->current_select->parsing_place;
328
 
    if (place == SELECT_LIST ||
329
 
        place == IN_HAVING)
 
327
    if (place == SELECT_LIST || place == IN_HAVING)
330
328
      session->lex->current_select->select_n_having_items++;
331
329
  }
332
330
}