~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/subselect.h

merged with up to date trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems
 
4
 *  Copyright (C) 2008 Sun Microsystems, Inc.
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
183
183
  double val_real();
184
184
  int64_t val_int ();
185
185
  String *val_str (String *);
186
 
  my_decimal *val_decimal(my_decimal *);
 
186
  type::Decimal *val_decimal(type::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
 
  my_decimal *val_decimal(my_decimal *);
 
254
  type::Decimal *val_decimal(type::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
 
  my_decimal *val_decimal(my_decimal *);
 
371
  type::Decimal *val_decimal(type::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();
515
516
 
516
517
  friend class subselect_hash_sj_engine;
517
518
  friend class Item_in_subselect;