Below is the list of changes that have just been committed into a local
4.1 repository of serg. When serg does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://www.mysql.com/doc/I/n/Installing_source_tree.html
ChangeSet
1.1434 03/01/28 00:33:04 serg@xxxxxxxxxxxxxx +1 -0
do not ignore first char, when truncating spaces in str->num conversion.
strings/ctype-simple.c
1.26 03/01/28 00:33:02 serg@xxxxxxxxxxxxxx +1 -1
do not ignore first char, when truncating spaces.
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: serg
# Host: serg.mysql.com
# Root: /usr/home/serg/Abk/mysql-4.1
--- 1.25/strings/ctype-simple.c Mon Jan 27 13:46:00 2003
+++ 1.26/strings/ctype-simple.c Tue Jan 28 00:33:02 2003
@@ -1000,7 +1000,7 @@
return 0;
case MY_SEQ_SPACES:
- for (str++ ; str != end ; str++)
+ for (; str != end ; str++)
{
if (!my_isspace(cs,*str))
break;
---------------------------------------------------------------------
Before posting, please check:
http://www.mysql.com/manual.php (the manual)
http://lists.mysql.com/ (the list archive)
To request this thread, e-mail internals-thread6695@xxxxxxxxxxxxxxx
To unsubscribe, e-mail <internals-unsubscribe@xxxxxxxxxxxxxxx>
|