1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Fixed bug in REGEXP for Linux Alpha

Docs/manual.texi:
  Updated MyODBC section
libmysql/conf_to_src.c:
  Fixed wrong typecast
mysql-test/r/func_regexp.result:
  Added test case for REGEXP bug
mysql-test/t/func_regexp.test:
  Added test case for REGEXP bug
regex/engine.c:
  Fixed wrong type
regex/regexec.c:
  Fixed wrong type
sql/records.cc:
  Fixed test of READ lock
sql/slave.cc:
  Cleanup
This commit is contained in:
unknown
2001-04-11 20:19:52 +03:00
parent 494a3a0fc7
commit 9bf58f4fac
8 changed files with 131 additions and 15 deletions

View File

@ -65,7 +65,7 @@ main(int argc, char **argv)
}
void
print_array(FILE *f, char *set, char *name, int n)
print_array(FILE *f, const char *set, const char *name, int n)
{
int i;
char val[100];