~jaypipes/drizzle/item-class-file-reorg

« back to all changes in this revision

Viewing changes to drizzled/item/function/num1_func.h

  • Committer: Jay Pipes
  • Date: 2008-07-30 21:08:25 UTC
  • Revision ID: jay@mysql.com-20080730210825-w17xlx7j45l2ea7e
Phase 2 work breaking out Item_func crap.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (C) 2000-2006 MySQL AB
 
2
 
 
3
   This program is free software; you can redistribute it and/or modify
 
4
   it under the terms of the GNU General Public License as published by
 
5
   the Free Software Foundation; version 2 of the License.
 
6
 
 
7
   This program is distributed in the hope that it will be useful,
 
8
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
9
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
10
   GNU General Public License for more details.
 
11
 
 
12
   You should have received a copy of the GNU General Public License
 
13
   along with this program; if not, write to the Free Software
 
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
 
15
 
 
16
#ifndef DRIZZLE_SERVER_ITEM_FUNCTION_NUM1_H
 
17
#define DRIZZLE_SERVER_ITEM_FUNCTION_NUM1_H
 
18
 
 
19
#ifdef USE_PRAGMA_INTERFACE
 
20
#pragma interface                       /* gcc class implementation */
 
21
#endif
 
22
 
 
23
#include "mysql_priv.h" /* Will include item.h */
 
24
 
 
25
/** 
 
26
 * A function where the type of result is 
 
27
 * detected by first argument 
 
28
 */
 
29
class Item_func_num1: public Item_func_numhybrid
 
30
{
 
31
public:
 
32
  Item_func_num1(Item *a) :Item_func_numhybrid(a) {}
 
33
  Item_func_num1(Item *a, Item *b) :Item_func_numhybrid(a, b) {}
 
34
 
 
35
  void fix_num_length_and_dec();
 
36
  void find_num_type();
 
37
  String *str_op(String *str __attribute__((unused)))
 
38
  {
 
39
    assert(0);
 
40
    return 0;
 
41
  }
 
42
};
 
43
 
 
44
#endif /* DRIZZLE_SERVER_ITEM_FUNCTION_NUM1_H */