Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
07808113
Commit
07808113
authored
Jul 09, 2004
by
monty@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/home/my/mysql-4.1
parents
c1032fe9
664329b5
Changes
21
Hide whitespace changes
Inline
Side-by-side
Showing
21 changed files
with
77 additions
and
55 deletions
+77
-55
include/my_global.h
include/my_global.h
+5
-1
mysql-test/r/alter_table.result
mysql-test/r/alter_table.result
+1
-1
mysql-test/r/connect.result
mysql-test/r/connect.result
+2
-2
mysql-test/r/grant.result
mysql-test/r/grant.result
+1
-0
mysql-test/r/grant2.result
mysql-test/r/grant2.result
+1
-0
mysql-test/r/grant_cache.result
mysql-test/r/grant_cache.result
+1
-0
mysql-test/r/multi_update.result
mysql-test/r/multi_update.result
+1
-1
mysql-test/r/rpl000001.result
mysql-test/r/rpl000001.result
+4
-4
mysql-test/r/rpl_do_grant.result
mysql-test/r/rpl_do_grant.result
+8
-8
mysql-test/r/rpl_ignore_grant.result
mysql-test/r/rpl_ignore_grant.result
+12
-12
mysql-test/r/show_check.result
mysql-test/r/show_check.result
+1
-0
mysql-test/t/alter_table.test
mysql-test/t/alter_table.test
+1
-1
mysql-test/t/connect.test
mysql-test/t/connect.test
+2
-2
mysql-test/t/grant.test
mysql-test/t/grant.test
+2
-0
mysql-test/t/grant2.test
mysql-test/t/grant2.test
+2
-0
mysql-test/t/grant_cache.test
mysql-test/t/grant_cache.test
+9
-0
mysql-test/t/multi_update.test
mysql-test/t/multi_update.test
+1
-1
mysql-test/t/rpl000001.test
mysql-test/t/rpl000001.test
+4
-4
mysql-test/t/rpl_do_grant.test
mysql-test/t/rpl_do_grant.test
+7
-7
mysql-test/t/rpl_ignore_grant.test
mysql-test/t/rpl_ignore_grant.test
+11
-11
mysql-test/t/show_check.test
mysql-test/t/show_check.test
+1
-0
No files found.
include/my_global.h
View file @
07808113
...
...
@@ -213,7 +213,11 @@ C_MODE_END
/* Fix problem when linking c++ programs with gcc 3.x */
#ifdef DEFINE_CXA_PURE_VIRTUAL
#define FIX_GCC_LINKING_PROBLEM extern "C" { int __cxa_pure_virtual() {return 0;} }
#define FIX_GCC_LINKING_PROBLEM \
extern "C" { int __cxa_pure_virtual() {\
DBUG_ASSERT("Pure virtual method called." == "Aborted");\
return 0;\
} }
#else
#define FIX_GCC_LINKING_PROBLEM
#endif
...
...
mysql-test/r/alter_table.result
View file @
07808113
...
...
@@ -123,7 +123,7 @@ grant all on mysqltest.t1 to mysqltest_1@localhost;
alter table t1 rename t2;
ERROR 42000: insert command denied to user 'mysqltest_1'@'localhost' for table 't2'
revoke all privileges on mysqltest.t1 from mysqltest_1@localhost;
delete from mysql.user where user='mysqltest_1';
delete from mysql.user where user=
_binary
'mysqltest_1';
drop database mysqltest;
create table t1 (n1 int not null, n2 int, n3 int, n4 float,
unique(n1),
...
...
mysql-test/r/connect.result
View file @
07808113
...
...
@@ -38,7 +38,7 @@ time_zone_transition_type
user
show tables;
Tables_in_test
update mysql.user set password=old_password("gambling2") where user="test";
update mysql.user set password=old_password("gambling2") where user=
_binary
"test";
flush privileges;
set password=old_password('gambling3');
show tables;
...
...
@@ -60,5 +60,5 @@ time_zone_transition_type
user
show tables;
Tables_in_test
delete from mysql.user where user="test";
delete from mysql.user where user=
_binary
"test";
flush privileges;
mysql-test/r/grant.result
View file @
07808113
drop table if exists t1;
SET NAMES binary;
delete from mysql.user where user='mysqltest_1';
delete from mysql.db where user='mysqltest_1';
flush privileges;
...
...
mysql-test/r/grant2.result
View file @
07808113
SET NAMES binary;
delete from mysql.user where user like 'mysqltest\_%';
delete from mysql.db where user like 'mysqltest\_%';
flush privileges;
...
...
mysql-test/r/grant_cache.result
View file @
07808113
...
...
@@ -198,6 +198,7 @@ Qcache_hits 8
show status like "Qcache_not_cached";
Variable_name Value
Qcache_not_cached 8
set names binary;
delete from mysql.user where user in ("mysqltest_1","mysqltest_2","mysqltest_3");
delete from mysql.db where user in ("mysqltest_1","mysqltest_2","mysqltest_3");
delete from mysql.tables_priv where user in ("mysqltest_1","mysqltest_2","mysqltest_3");
...
...
mysql-test/r/multi_update.result
View file @
07808113
...
...
@@ -447,7 +447,7 @@ update t1, t2 set t1.b=1 where t1.a=t2.a;
update t1, t2 set t1.b=(select t3.b from t3 where t1.a=t3.a) where t1.a=t2.a;
revoke all privileges on mysqltest.t1 from mysqltest_1@localhost;
revoke all privileges on mysqltest.* from mysqltest_1@localhost;
delete from mysql.user where user='mysqltest_1';
delete from mysql.user where user=
_binary
'mysqltest_1';
drop database mysqltest;
create table t1 (a int, primary key (a));
create table t2 (a int, primary key (a));
...
...
mysql-test/r/rpl000001.result
View file @
07808113
...
...
@@ -76,17 +76,17 @@ create table t1 (n int);
insert into t1 values(3456);
insert into mysql.user (Host, User, Password)
VALUES ("10.10.10.%", "blafasel2", password("blafasel2"));
select select_priv,user from mysql.user where user = 'blafasel2';
select select_priv,user from mysql.user where user =
_binary
'blafasel2';
select_priv user
N blafasel2
update mysql.user set Select_priv = "Y" where User="blafasel2";
select select_priv,user from mysql.user where user = 'blafasel2';
update mysql.user set Select_priv = "Y" where User=
_binary
"blafasel2";
select select_priv,user from mysql.user where user =
_binary
'blafasel2';
select_priv user
Y blafasel2
select n from t1;
n
3456
select select_priv,user from mysql.user where user = 'blafasel2';
select select_priv,user from mysql.user where user =
_binary
'blafasel2';
select_priv user
Y blafasel2
drop table t1;
mysql-test/r/rpl_do_grant.result
View file @
07808113
...
...
@@ -4,11 +4,11 @@ reset master;
reset slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
start slave;
delete from mysql.user where user='rpl_do_grant';
delete from mysql.db where user='rpl_do_grant';
delete from mysql.user where user=
_binary
'rpl_do_grant';
delete from mysql.db where user=
_binary
'rpl_do_grant';
flush privileges;
delete from mysql.user where user='rpl_ignore_grant';
delete from mysql.db where user='rpl_ignore_grant';
delete from mysql.user where user=
_binary
'rpl_ignore_grant';
delete from mysql.db where user=
_binary
'rpl_ignore_grant';
flush privileges;
grant select on *.* to rpl_do_grant@localhost;
grant drop on test.* to rpl_do_grant@localhost;
...
...
@@ -17,10 +17,10 @@ Grants for rpl_do_grant@localhost
GRANT SELECT ON *.* TO 'rpl_do_grant'@'localhost'
GRANT DROP ON `test`.* TO 'rpl_do_grant'@'localhost'
set password for rpl_do_grant@localhost=password("does it work?");
select password<>
'' from mysql.user where user=
'rpl_do_grant';
password<>''
select password<>
_binary'' from mysql.user where user=_binary
'rpl_do_grant';
password<>
_binary
''
1
delete from mysql.user where user='rpl_do_grant';
delete from mysql.db where user='rpl_do_grant';
delete from mysql.user where user=
_binary
'rpl_do_grant';
delete from mysql.db where user=
_binary
'rpl_do_grant';
flush privileges;
flush privileges;
mysql-test/r/rpl_ignore_grant.result
View file @
07808113
...
...
@@ -4,11 +4,11 @@ reset master;
reset slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
start slave;
delete from mysql.user where user='rpl_ignore_grant';
delete from mysql.db where user='rpl_ignore_grant';
delete from mysql.user where user=
_binary
'rpl_ignore_grant';
delete from mysql.db where user=
_binary
'rpl_ignore_grant';
flush privileges;
delete from mysql.user where user='rpl_ignore_grant';
delete from mysql.db where user='rpl_ignore_grant';
delete from mysql.user where user=
_binary
'rpl_ignore_grant';
delete from mysql.db where user=
_binary
'rpl_ignore_grant';
flush privileges;
grant select on *.* to rpl_ignore_grant@localhost;
grant drop on test.* to rpl_ignore_grant@localhost;
...
...
@@ -18,20 +18,20 @@ GRANT SELECT ON *.* TO 'rpl_ignore_grant'@'localhost'
GRANT DROP ON `test`.* TO 'rpl_ignore_grant'@'localhost'
show grants for rpl_ignore_grant@localhost;
ERROR 42000: There is no such grant defined for user 'rpl_ignore_grant' on host 'localhost'
select count(*) from mysql.user where user='rpl_ignore_grant';
select count(*) from mysql.user where user=
_binary
'rpl_ignore_grant';
count(*)
0
select count(*) from mysql.db where user='rpl_ignore_grant';
select count(*) from mysql.db where user=
_binary
'rpl_ignore_grant';
count(*)
0
grant select on *.* to rpl_ignore_grant@localhost;
set password for rpl_ignore_grant@localhost=password("does it work?");
select password<>
'' from mysql.user where user=
'rpl_ignore_grant';
password<>''
select password<>
_binary'' from mysql.user where user=_binary
'rpl_ignore_grant';
password<>
_binary
''
0
delete from mysql.user where user='rpl_ignore_grant';
delete from mysql.db where user='rpl_ignore_grant';
delete from mysql.user where user=
_binary
'rpl_ignore_grant';
delete from mysql.db where user=
_binary
'rpl_ignore_grant';
flush privileges;
delete from mysql.user where user='rpl_ignore_grant';
delete from mysql.db where user='rpl_ignore_grant';
delete from mysql.user where user=
_binary
'rpl_ignore_grant';
delete from mysql.db where user=
_binary
'rpl_ignore_grant';
flush privileges;
mysql-test/r/show_check.result
View file @
07808113
...
...
@@ -395,6 +395,7 @@ show create database test_$1;
ERROR 42000: Access denied for user 'mysqltest_3'@'localhost' to database 'test_$1'
drop table test_$1.t1;
drop database test_$1;
set names binary;
delete from mysql.user
where user='mysqltest_1' || user='mysqltest_2' || user='mysqltest_3';
delete from mysql.db
...
...
mysql-test/t/alter_table.test
View file @
07808113
...
...
@@ -123,7 +123,7 @@ connection user1;
alter
table
t1
rename
t2
;
connection
root
;
revoke
all
privileges
on
mysqltest
.
t1
from
mysqltest_1
@
localhost
;
delete
from
mysql
.
user
where
user
=
'mysqltest_1'
;
delete
from
mysql
.
user
where
user
=
_binary
'mysqltest_1'
;
drop
database
mysqltest
;
#
...
...
mysql-test/t/connect.test
View file @
07808113
...
...
@@ -42,7 +42,7 @@ show tables;
# check if old password version also works
update
mysql
.
user
set
password
=
old_password
(
"gambling2"
)
where
user
=
"test"
;
update
mysql
.
user
set
password
=
old_password
(
"gambling2"
)
where
user
=
_binary
"test"
;
flush
privileges
;
#connect (con1,localhost,test,gambling2,"");
...
...
@@ -68,5 +68,5 @@ show tables;
# remove user 'test' so that other tests which may use 'test'
# do not depend on this test.
delete
from
mysql
.
user
where
user
=
"test"
;
delete
from
mysql
.
user
where
user
=
_binary
"test"
;
flush
privileges
;
mysql-test/t/grant.test
View file @
07808113
...
...
@@ -5,6 +5,8 @@
drop
table
if
exists
t1
;
--
enable_warnings
SET
NAMES
binary
;
#
# Test that SSL options works properly
#
...
...
mysql-test/t/grant2.test
View file @
07808113
SET
NAMES
binary
;
#
# GRANT tests that require several connections
# (usually it's GRANT, reconnect as another user, try something)
...
...
mysql-test/t/grant_cache.test
View file @
07808113
...
...
@@ -126,6 +126,15 @@ show status like "Qcache_not_cached";
# Cleanup
connection
root
;
#
# A temporary 4.1 workaround to make this test pass if
# mysql was compiled with other than latin1 --with-charset=XXX.
# Without "set names binary" the below queries fail with
# "Illegal mix of collations" error.
# In 5.0 we will change grant tables to use NCHAR(N) instead
# of "CHAR(N) BINARY", and use cast-to-nchar: N'mysqltest_1'.
#
set
names
binary
;
delete
from
mysql
.
user
where
user
in
(
"mysqltest_1"
,
"mysqltest_2"
,
"mysqltest_3"
);
delete
from
mysql
.
db
where
user
in
(
"mysqltest_1"
,
"mysqltest_2"
,
"mysqltest_3"
);
delete
from
mysql
.
tables_priv
where
user
in
(
"mysqltest_1"
,
"mysqltest_2"
,
"mysqltest_3"
);
...
...
mysql-test/t/multi_update.test
View file @
07808113
...
...
@@ -405,7 +405,7 @@ update t1, t2 set t1.b=(select t3.b from t3 where t1.a=t3.a) where t1.a=t2.a;
connection
root
;
revoke
all
privileges
on
mysqltest
.
t1
from
mysqltest_1
@
localhost
;
revoke
all
privileges
on
mysqltest
.*
from
mysqltest_1
@
localhost
;
delete
from
mysql
.
user
where
user
=
'mysqltest_1'
;
delete
from
mysql
.
user
where
user
=
_binary
'mysqltest_1'
;
drop
database
mysqltest
;
#
...
...
mysql-test/t/rpl000001.test
View file @
07808113
...
...
@@ -110,14 +110,14 @@ create table t1 (n int);
insert
into
t1
values
(
3456
);
insert
into
mysql
.
user
(
Host
,
User
,
Password
)
VALUES
(
"10.10.10.%"
,
"blafasel2"
,
password
(
"blafasel2"
));
select
select_priv
,
user
from
mysql
.
user
where
user
=
'blafasel2'
;
update
mysql
.
user
set
Select_priv
=
"Y"
where
User
=
"blafasel2"
;
select
select_priv
,
user
from
mysql
.
user
where
user
=
'blafasel2'
;
select
select_priv
,
user
from
mysql
.
user
where
user
=
_binary
'blafasel2'
;
update
mysql
.
user
set
Select_priv
=
"Y"
where
User
=
_binary
"blafasel2"
;
select
select_priv
,
user
from
mysql
.
user
where
user
=
_binary
'blafasel2'
;
save_master_pos
;
connection
slave
;
sync_with_master
;
select
n
from
t1
;
select
select_priv
,
user
from
mysql
.
user
where
user
=
'blafasel2'
;
select
select_priv
,
user
from
mysql
.
user
where
user
=
_binary
'blafasel2'
;
connection
master1
;
drop
table
t1
;
save_master_pos
;
...
...
mysql-test/t/rpl_do_grant.test
View file @
07808113
...
...
@@ -4,16 +4,16 @@ source include/master-slave.inc;
# do not be influenced by other tests.
connection
master
;
delete
from
mysql
.
user
where
user
=
'rpl_do_grant'
;
delete
from
mysql
.
db
where
user
=
'rpl_do_grant'
;
delete
from
mysql
.
user
where
user
=
_binary
'rpl_do_grant'
;
delete
from
mysql
.
db
where
user
=
_binary
'rpl_do_grant'
;
flush
privileges
;
save_master_pos
;
connection
slave
;
sync_with_master
;
# if these DELETE did nothing on the master, we need to do them manually on the
# slave.
delete
from
mysql
.
user
where
user
=
'rpl_ignore_grant'
;
delete
from
mysql
.
db
where
user
=
'rpl_ignore_grant'
;
delete
from
mysql
.
user
where
user
=
_binary
'rpl_ignore_grant'
;
delete
from
mysql
.
db
where
user
=
_binary
'rpl_ignore_grant'
;
flush
privileges
;
# test replication of GRANT
...
...
@@ -31,12 +31,12 @@ set password for rpl_do_grant@localhost=password("does it work?");
save_master_pos
;
connection
slave
;
sync_with_master
;
select
password
<>
''
from
mysql
.
user
where
user
=
'rpl_do_grant'
;
select
password
<>
_binary
''
from
mysql
.
user
where
user
=
_binary
'rpl_do_grant'
;
# clear what we have done, to not influence other tests.
connection
master
;
delete
from
mysql
.
user
where
user
=
'rpl_do_grant'
;
delete
from
mysql
.
db
where
user
=
'rpl_do_grant'
;
delete
from
mysql
.
user
where
user
=
_binary
'rpl_do_grant'
;
delete
from
mysql
.
db
where
user
=
_binary
'rpl_do_grant'
;
flush
privileges
;
save_master_pos
;
connection
slave
;
...
...
mysql-test/t/rpl_ignore_grant.test
View file @
07808113
...
...
@@ -6,16 +6,16 @@ source include/master-slave.inc;
# do not be influenced by other tests.
connection
master
;
delete
from
mysql
.
user
where
user
=
'rpl_ignore_grant'
;
delete
from
mysql
.
db
where
user
=
'rpl_ignore_grant'
;
delete
from
mysql
.
user
where
user
=
_binary
'rpl_ignore_grant'
;
delete
from
mysql
.
db
where
user
=
_binary
'rpl_ignore_grant'
;
flush
privileges
;
save_master_pos
;
connection
slave
;
sync_with_master
;
# as these DELETE were not replicated, we need to do them manually on the
# slave.
delete
from
mysql
.
user
where
user
=
'rpl_ignore_grant'
;
delete
from
mysql
.
db
where
user
=
'rpl_ignore_grant'
;
delete
from
mysql
.
user
where
user
=
_binary
'rpl_ignore_grant'
;
delete
from
mysql
.
db
where
user
=
_binary
'rpl_ignore_grant'
;
flush
privileges
;
# test non-replication of GRANT
...
...
@@ -29,8 +29,8 @@ sync_with_master;
--
error
1141
#("no such grant for user")
show
grants
for
rpl_ignore_grant
@
localhost
;
# check it another way
select
count
(
*
)
from
mysql
.
user
where
user
=
'rpl_ignore_grant'
;
select
count
(
*
)
from
mysql
.
db
where
user
=
'rpl_ignore_grant'
;
select
count
(
*
)
from
mysql
.
user
where
user
=
_binary
'rpl_ignore_grant'
;
select
count
(
*
)
from
mysql
.
db
where
user
=
_binary
'rpl_ignore_grant'
;
# test non-replication of SET PASSWORD
# first force creation of the user on slave (because as the user does not exist
...
...
@@ -42,16 +42,16 @@ set password for rpl_ignore_grant@localhost=password("does it work?");
save_master_pos
;
connection
slave
;
sync_with_master
;
select
password
<>
''
from
mysql
.
user
where
user
=
'rpl_ignore_grant'
;
select
password
<>
_binary
''
from
mysql
.
user
where
user
=
_binary
'rpl_ignore_grant'
;
# clear what we have done, to not influence other tests.
connection
master
;
delete
from
mysql
.
user
where
user
=
'rpl_ignore_grant'
;
delete
from
mysql
.
db
where
user
=
'rpl_ignore_grant'
;
delete
from
mysql
.
user
where
user
=
_binary
'rpl_ignore_grant'
;
delete
from
mysql
.
db
where
user
=
_binary
'rpl_ignore_grant'
;
flush
privileges
;
save_master_pos
;
connection
slave
;
sync_with_master
;
delete
from
mysql
.
user
where
user
=
'rpl_ignore_grant'
;
delete
from
mysql
.
db
where
user
=
'rpl_ignore_grant'
;
delete
from
mysql
.
user
where
user
=
_binary
'rpl_ignore_grant'
;
delete
from
mysql
.
db
where
user
=
_binary
'rpl_ignore_grant'
;
flush
privileges
;
mysql-test/t/show_check.test
View file @
07808113
...
...
@@ -299,6 +299,7 @@ drop table test_$1.t1;
drop
database
test_
$
1
;
connection
default
;
set
names
binary
;
delete
from
mysql
.
user
where
user
=
'mysqltest_1'
||
user
=
'mysqltest_2'
||
user
=
'mysqltest_3'
;
delete
from
mysql
.
db
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment