~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/charset.cc

  • Committer: Mark Atwood
  • Date: 2011-06-22 05:48:25 UTC
  • mfrom: (2318.6.17 refactor12)
  • Revision ID: me@mark.atwood.name-20110622054825-mf8nxjs9dxcpvcfe
bzr merge lp:~olafvdspek/drizzle/refactor12

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
    - Setting server default character set
43
43
*/
44
44
 
45
 
bool my_charset_same(const charset_info_st *cs1, const charset_info_st *cs2)
46
 
{
47
 
  return cs1 == cs2 || not strcmp(cs1->csname, cs2->csname);
 
45
bool my_charset_same(const charset_info_st *cs1, const charset_info_st *cs2)
 
46
{
 
47
  return cs1 == cs2 || not strcmp(cs1->csname, cs2->csname);
48
48
}
49
49
 
50
50
static uint get_collation_number_internal(const char *name)