~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/item_subselect.h

  • Committer: Brian Aker
  • Date: 2008-07-23 00:11:39 UTC
  • Revision ID: brian@tangent.org-20080723001139-967ewfngqqotwb6e
Removed final uint dead types.

Show diffs side-by-side

added added

removed removed

Lines of Context:
438
438
  */
439
439
  virtual int exec()= 0;
440
440
  virtual uint cols()= 0; /* return number of columns in select */
441
 
  virtual uint8 uncacheable()= 0; /* query is uncacheable */
 
441
  virtual uint8_t uncacheable()= 0; /* query is uncacheable */
442
442
  enum Item_result type() { return res_type; }
443
443
  enum_field_types field_type() { return res_field_type; }
444
444
  virtual void exclude()= 0;
475
475
  void fix_length_and_dec(Item_cache** row);
476
476
  int exec();
477
477
  uint cols();
478
 
  uint8 uncacheable();
 
478
  uint8_t uncacheable();
479
479
  void exclude();
480
480
  table_map upper_select_const_tables();
481
481
  virtual void print (String *str, enum_query_type query_type);
503
503
  void fix_length_and_dec(Item_cache** row);
504
504
  int exec();
505
505
  uint cols();
506
 
  uint8 uncacheable();
 
506
  uint8_t uncacheable();
507
507
  void exclude();
508
508
  table_map upper_select_const_tables();
509
509
  virtual void print (String *str, enum_query_type query_type);
560
560
  void fix_length_and_dec(Item_cache** row);
561
561
  int exec();
562
562
  uint cols() { return 1; }
563
 
  uint8 uncacheable() { return UNCACHEABLE_DEPENDENT; }
 
563
  uint8_t uncacheable() { return UNCACHEABLE_DEPENDENT; }
564
564
  void exclude();
565
565
  table_map upper_select_const_tables() { return 0; }
566
566
  virtual void print (String *str, enum_query_type query_type);