~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump.c

  • Committer: Brian Aker
  • Date: 2008-07-20 05:35:53 UTC
  • Revision ID: brian@tangent.org-20080720053553-gaooq10m1ujw4mo2
Cleanup on "VERSION" issues. Table FRM exists and prevents modifying back
the version number.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1160
1160
 
1161
1161
static bool test_if_special_chars(const char *str)
1162
1162
{
1163
 
#if MYSQL_VERSION_ID >= 32300
1164
1163
  for ( ; *str ; str++)
1165
1164
    if (!my_isvar(charset_info,*str) && *str != '$')
1166
1165
      return 1;
1167
 
#endif
1168
1166
  return 0;
1169
1167
} /* test_if_special_chars */
1170
1168