~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/server_includes.h

  • Committer: Brian Aker
  • Date: 2009-07-29 15:08:30 UTC
  • mfrom: (1093.1.36 captain)
  • Revision ID: brian@gaz-20090729150830-8sckl9aatssf1xjd
Merge Jay

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
1
/*
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
4
 *  Copyright (C) 2008 Sun Microsystems
53
53
#include <sstream>
54
54
#include <bitset>
55
55
 
56
 
typedef struct drizzled_lock_st DRIZZLE_LOCK;
57
56
typedef struct st_ha_create_information HA_CREATE_INFO;
58
57
 
59
58
/* information schema */
187
186
                                  uint32_t str_length, enum enum_drizzle_timestamp_type time_type,
188
187
                                  const char *field_name);
189
188
 
190
 
bool date_add_interval(DRIZZLE_TIME *ltime, interval_type int_type, INTERVAL interval);
191
189
bool calc_time_diff(DRIZZLE_TIME *l_time1, DRIZZLE_TIME *l_time2, int l_sign,
192
190
                    int64_t *seconds_out, long *microseconds_out);
193
191