Below is the list of changes that have just been commited into a local
3.23. repository of Sinisa. When Sinisa does a push, they will be
propogaged to the main repository and within 24 hours after the push into
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@stripped, 2002-08-03 17:21:21+03:00, Sinisa@stripped
Fixed a problem with privilege tables when downgrading from 4.0.2
to 3.23
sql/sql_acl.cc
1.37 02/08/03 17:21:21 Sinisa@stripped +1 -1
Fixed a problem with privilege tables when downgrading from 4.0.2
to 3.23
Docs/manual.texi
1.806 02/08/03 17:21:20 Sinisa@stripped +2 -0
Fixed a problem with privilege tables when downgrading from 4.0.2
to 3.23
# 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: Sinisa
# Host: sinisa.nasamreza.org
# Root: /mnt/work/mysql
--- 1.805/Docs/manual.texi Wed Jul 31 18:02:17 2002
+++ 1.806/Docs/manual.texi Sat Aug 3 17:21:20 2002
@@ -46928,6 +46928,8 @@
@appendixsubsec Changes in release 3.23.52
@itemize @bullet
@item
+Fixed problem with privilege tables when downgrading from 4.0.2 to 3.23 ...
+@item
Added name of 'administrator command' logs.
@item
Fixed bug with creating an auto-increment value on second part of a
--- 1.36/sql/sql_acl.cc Wed Jun 26 14:53:18 2002
+++ 1.37/sql/sql_acl.cc Sat Aug 3 17:21:21 2002
@@ -215,7 +215,7 @@
continue; /* purecov: tested */
}
get_salt_from_password(user.salt,user.password);
- user.access=get_access(table,3);
+ user.access=get_access(table,3) & GLOBAL_ACLS;
user.sort=get_sort(2,user.host.hostname,user.user);
user.hostname_length=user.host.hostname ? (uint) strlen(user.host.hostname) : 0;
#ifndef TO_BE_REMOVED