~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/uuid_function/uuid_function.cc

  • Committer: Brian Aker
  • Date: 2011-02-22 06:12:02 UTC
  • mfrom: (2190.1.6 drizzle-build)
  • Revision ID: brian@tangent.org-20110222061202-k03czxykqy4x9hjs
List update, header fixes, multiple symbols, and David deletes some code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#include "config.h"
 
21
#include <config.h>
 
22
 
 
23
#include <drizzled/charset_info.h>
 
24
#include <drizzled/function/str/strfunc.h>
 
25
#include <drizzled/item/func.h>
22
26
#include <drizzled/plugin/function.h>
23
 
#include <drizzled/item/func.h>
24
 
#include <drizzled/function/str/strfunc.h>
 
27
 
25
28
#include <uuid/uuid.h>
26
29
 
27
30
#define UUID_LENGTH (8+1+4+1+4+1+4+1+12)
82
85
  "UUID() function using libuuid",
83
86
  drizzled::PLUGIN_LICENSE_GPL,
84
87
  initialize, /* Plugin Init */
85
 
  NULL,   /* system variables */
 
88
  NULL,   /* depends */
86
89
  NULL    /* config options */
87
90
}
88
91
DRIZZLE_DECLARE_PLUGIN_END;