~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/select_union.h

  • Committer: Djellel E. Difallah
  • Date: 2010-03-27 10:10:49 UTC
  • mto: This revision was merged to the branch mainline in revision 1429.
  • Revision ID: ded@ubuntu-20100327101049-oo3arvatjoyku124
merge my_decimal and decimal

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, Inc.
 
4
 *  Copyright (C) 2008 Sun Microsystems
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
21
21
#ifndef DRIZZLED_SELECT_UNION_H
22
22
#define DRIZZLED_SELECT_UNION_H
23
23
 
24
 
#include <drizzled/select_result_interceptor.h>
25
 
#include <drizzled/tmp_table_param.h>
26
 
 
27
24
namespace drizzled
28
25
{
29
26
 
33
30
public:
34
31
  Table *table;
35
32
 
36
 
  select_union() :table(0) { }
37
 
  ~select_union() { }
38
 
 
 
33
  select_union() :table(0) {}
39
34
  int prepare(List<Item> &list, Select_Lex_Unit *u);
40
35
  bool send_data(List<Item> &items);
41
36
  bool send_eof();