~stewart/drizzle/use-catalog-for-path

« back to all changes in this revision

Viewing changes to drizzled/field/microtime.h

  • Committer: Brian Aker
  • Date: 2011-03-28 02:46:21 UTC
  • Revision ID: brian@tangent.org-20110328024621-wtkdtlvdplqm0ybf
Shift CHARSET_INFO to charset_info_st

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
{
30
30
 
31
31
class TableShare;
32
 
typedef struct charset_info_st CHARSET_INFO;
33
32
 
34
33
class Microtime :public Epoch {
35
34
public:
50
49
  enum ha_base_keytype key_type() const { return HA_KEYTYPE_BINARY; }
51
50
  enum Item_result cmp_type () const { return STRING_RESULT; }
52
51
  int store(const char *to,uint32_t length,
53
 
            const CHARSET_INFO * const charset);
 
52
            const charset_info_st * const charset);
54
53
  int store(double nr);
55
54
  int store(int64_t nr, bool unsigned_val);
56
55
  int store_time(type::Time &ltime, type::timestamp_t t_type);