~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/subselect.h

  • Committer: Monty Taylor
  • Date: 2010-12-26 01:32:11 UTC
  • mto: This revision was merged to the branch mainline in revision 2038.
  • Revision ID: mordred@inaugust.com-20101226013211-c1tx52h7evovmijg
fixed dict and eval.

Show diffs side-by-side

added added

removed removed

Lines of Context:
183
183
  double val_real();
184
184
  int64_t val_int ();
185
185
  String *val_str (String *);
186
 
  type::Decimal *val_decimal(type::Decimal *);
 
186
  my_decimal *val_decimal(my_decimal *);
187
187
  bool val_bool();
188
188
  enum Item_result result_type() const;
189
189
  enum_field_types field_type() const;
251
251
  int64_t val_int();
252
252
  double val_real();
253
253
  String *val_str(String*);
254
 
  type::Decimal *val_decimal(type::Decimal *);
 
254
  my_decimal *val_decimal(my_decimal *);
255
255
  bool val_bool();
256
256
  void fix_length_and_dec();
257
257
  virtual void print(String *str, enum_query_type query_type);
368
368
  int64_t val_int();
369
369
  double val_real();
370
370
  String *val_str(String*);
371
 
  type::Decimal *val_decimal(type::Decimal *);
 
371
  my_decimal *val_decimal(my_decimal *);
372
372
  void update_null_value () { (void) val_bool(); }
373
373
  bool val_bool();
374
374
  void top_level_item() { abort_on_null=1; }
512
512
  bool is_executed() const { return executed; }
513
513
  bool no_rows();
514
514
  virtual enum_engine_type engine_type() { return SINGLE_SELECT_ENGINE; }
515
 
  bool save_join_if_explain();
516
515
 
517
516
  friend class subselect_hash_sj_engine;
518
517
  friend class Item_in_subselect;