~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item_create.h

  • Committer: Brian Aker
  • Date: 2008-08-01 18:16:56 UTC
  • mfrom: (243.1.8 cleanup-mysql-priv)
  • Revision ID: brian@tangent.org-20080801181656-sut492wazlvp9glh
Merge from Jay.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
/* Functions to create an item. Used by sql/sql_yacc.yy */
17
17
 
18
 
#ifndef ITEM_CREATE_H
19
 
#define ITEM_CREATE_H
 
18
#ifndef DRIZZLE_SERVER_ITEM_CREATE_H
 
19
#define DRIZZLE_SERVER_ITEM_CREATE_H
20
20
 
21
21
/**
22
22
  Public function builder interface.
62
62
  virtual ~Create_func() {}
63
63
};
64
64
 
65
 
 
66
65
/**
67
66
  Function builder for qualified functions.
68
67
  This builder is used with functions call using a qualified function name
163
162
create_func_cast(THD *thd, Item *a, Cast_target cast_type,
164
163
                 const char *len, const char *dec,
165
164
                 CHARSET_INFO *cs);
166
 
#endif
167
 
 
 
165
 
 
166
int item_create_init();
 
167
void item_create_cleanup();
 
168
 
 
169
#endif /* DRIZZLE_SERVER_ITEM_CREATE_H */