Merge paul@bk-internal.mysql.com:/home/bk/mysql-4.1

into kite-hub.kitebird.com:/src/extern/MySQL/bk/mysql-4.1


sql/sql_yacc.yy:
  Auto merged
This commit is contained in:
unknown 2004-06-04 10:35:57 -05:00
commit 8438a19382
22 changed files with 4153 additions and 3365 deletions

View file

@ -158,7 +158,7 @@ static int ch2x(int ch)
if (ch >= 'a' && ch <= 'f')
return 10 + ch - 'a';
if (ch >= 'A' && ch <= 'Z')
if (ch >= 'A' && ch <= 'F')
return 10 + ch - 'A';
return -1;