diff options
author | unknown <monty@mashka.mysql.fi> | 2003-09-09 20:06:50 +0300 |
---|---|---|
committer | unknown <monty@mashka.mysql.fi> | 2003-09-09 20:06:50 +0300 |
commit | 8272be9412ecf6566192260df7217a1bec7ffc99 (patch) | |
tree | c28d739cb848970b4758a26b83c985732b379552 /include/mysql.h | |
parent | 13f0dc32f46da723d6f5e6e8149392975afbff90 (diff) | |
download | mariadb-git-8272be9412ecf6566192260df7217a1bec7ffc99.tar.gz |
Cleaned up last bug fixes
Fix bug in SHOW GRANTS when there is a column privilege but no table privilege
include/mysql.h:
Make server_inited external
libmysqld/libmysqld.c:
Remove reference to (wrong) external variable
mysql-test/r/grant.result:
Fixed up grant test to not user 'user1' or 'user2'
Check for bug in SHOW GRANTS when there is a column privilege but no table privilege
mysql-test/r/mix_innodb_myisam_binlog.result:
Change to use tables t1 and t2
mysql-test/t/grant.test:
Fixed up grant test to not user 'user1' or 'user2'
Check for bug in SHOW GRANTS when there is a column privilege but no table privilege
mysql-test/t/mix_innodb_myisam_binlog.test:
Change to use tables t1 and t2
sql/sql_acl.cc:
Fix bug in SHOW GRANTS when there is a column privilege but no table privilege
sql/sql_parse.cc:
Use HAVE_REPLICATION instead of EMBEDDED_LIBRARY
Diffstat (limited to 'include/mysql.h')
-rw-r--r-- | include/mysql.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/mysql.h b/include/mysql.h index fb650343399..b27d98e7e57 100644 --- a/include/mysql.h +++ b/include/mysql.h @@ -424,6 +424,8 @@ int simple_command(MYSQL *mysql,enum enum_server_command command, unsigned long net_safe_read(MYSQL* mysql); void mysql_once_init(void); +extern my_bool server_inited; + #ifdef __NETWARE__ #pragma pack(pop) /* restore alignment */ #endif |