~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/sum.h

  • Committer: Lee Bieber
  • Date: 2011-02-11 20:30:05 UTC
  • mfrom: (2157.1.3 build)
  • Revision ID: kalebral@gmail.com-20110211203005-757o1y2yf78dxzqr
Merge Stewart - 716848: drizzleimport displays wrong program_name
Merge Stewart - update README file
Merge Andrew and Joe - Exposes the InnoDB SYS_REPLICATION_LOG to data_dictionary so that it is fast and fixes many issues we have been having

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
/* classes for sum functions */
24
24
 
25
 
#include <drizzled/tree.h>
 
25
 
 
26
#include "drizzled/tree.h"
26
27
#include <drizzled/hybrid_type.h>
27
28
#include <drizzled/item.h>
28
29
#include <drizzled/item/field.h>
29
30
#include <drizzled/item/bin_string.h>
30
 
#include <drizzled/charset_info.h>
31
31
 
32
32
namespace drizzled
33
33
{
366
366
    forced_const= true;
367
367
  }
368
368
  virtual bool const_item() const { return forced_const; }
369
 
  virtual bool const_during_execution() const { return false; }
370
369
  void make_field(SendField *field);
371
370
  virtual void print(String *str, enum_query_type query_type);
372
371
  void fix_num_length_and_dec();