~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/uuid_function/uuid_function.cc

  • Committer: Brian Aker
  • Date: 2010-05-15 01:19:45 UTC
  • Revision ID: brian@gaz-20100515011945-uxhf94vi0tzm0vq6
Rename of KEY to KeyInfo

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
  str->length(UUID_LENGTH);
56
56
  str->set_charset(system_charset_info);
57
57
  uuid_string= (char *) str->ptr();
58
 
  uuid_generate_time(uu);
 
58
  uuid_generate_random(uu);
59
59
  uuid_unparse(uu, uuid_string);
60
60
 
61
61
  return str;