~ubuntu-branches/ubuntu/hardy/mysql-dfsg-5.0/hardy-updates

« back to all changes in this revision

Viewing changes to innobase/dict/dict0dict.c

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2007-04-02 16:10:53 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20070402161053-zkil9hjq9k5p1uzv
Tags: 5.0.37-0ubuntu1
* New upstream bugfix release.
  - Fixes replication failure with auto-increment and on duplicate key
    update, a regression introduced into 5.0.24. (LP: #95821)
* debian/control: Set Ubuntu maintainer.
* debian/rules: Change comments from 'Debian etch' to 'Ubuntu 7.04'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
#include "rem0cmp.h"
29
29
 
30
30
/* Implement isspace() in a locale-independent way. (Bug #24299) */
31
 
#define ib_isspace(c) strchr(" \v\f\t\r\n", c)
 
31
#define ib_isspace(c) ((char) (c) && strchr(" \v\f\t\r\n", c))
32
32
 
33
33
dict_sys_t*     dict_sys        = NULL; /* the dictionary system */
34
34