~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/time/unix_timestamp.h

  • Committer: Monty Taylor
  • Date: 2009-02-08 11:28:58 UTC
  • mto: This revision was merged to the branch mainline in revision 852.
  • Revision ID: mordred@inaugust.com-20090208112858-aouo9w2okht5r6x0
ZOMG. Renamed all the rest of the stuff in libdrizzleclient to be drizzleclient_*. I love commandline perl.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
#include <drizzled/function/math/int.h>
24
24
 
25
 
namespace drizzled
26
 
{
27
 
 
28
25
class Item_func_unix_timestamp :public Item_int_func
29
26
{
30
27
  String value;
38
35
    decimals=0;
39
36
    max_length=10*MY_CHARSET_BIN_MB_MAXLEN;
40
37
  }
 
38
  bool check_vcol_func_processor(unsigned char *)
 
39
  { return true; }
41
40
};
42
41
 
43
 
} /* namespace drizzled */
44
 
 
45
42
#endif /* DRIZZLED_FUNCTION_TIME_UNIX_TIMESTAMP_H */