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
3f683e2b
Commit
3f683e2b
authored
Apr 18, 2006
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup test cases that leaves "stuff" behind
parent
030de4f9
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
19 additions
and
9 deletions
+19
-9
mysql-test/r/ctype_latin2_ch.result
mysql-test/r/ctype_latin2_ch.result
+1
-0
mysql-test/r/grant2.result
mysql-test/r/grant2.result
+1
-0
mysql-test/r/openssl_1.result
mysql-test/r/openssl_1.result
+2
-3
mysql-test/r/rpl_openssl.result
mysql-test/r/rpl_openssl.result
+2
-1
mysql-test/r/sp-security.result
mysql-test/r/sp-security.result
+1
-0
mysql-test/r/sp_notembedded.result
mysql-test/r/sp_notembedded.result
+1
-0
mysql-test/r/trigger.result
mysql-test/r/trigger.result
+1
-1
mysql-test/t/ctype_latin2_ch.test
mysql-test/t/ctype_latin2_ch.test
+2
-0
mysql-test/t/grant2.test
mysql-test/t/grant2.test
+1
-0
mysql-test/t/openssl_1.test
mysql-test/t/openssl_1.test
+3
-3
mysql-test/t/rpl_openssl.test
mysql-test/t/rpl_openssl.test
+1
-0
mysql-test/t/sp-security.test
mysql-test/t/sp-security.test
+1
-0
mysql-test/t/sp_notembedded.test
mysql-test/t/sp_notembedded.test
+1
-0
mysql-test/t/trigger.test
mysql-test/t/trigger.test
+1
-1
No files found.
mysql-test/r/ctype_latin2_ch.result
View file @
3f683e2b
...
...
@@ -28,3 +28,4 @@ select * from t1 ignore index (primary) where tt like 'AA%';
id tt
select * from t1 where tt like '%AA%';
id tt
drop table t1;
mysql-test/r/grant2.result
View file @
3f683e2b
...
...
@@ -369,3 +369,4 @@ f2()
drop function f2;
drop table t2;
REVOKE ALL PRIVILEGES, GRANT OPTION FROM `a@`@localhost;
drop user `a@`@localhost;
mysql-test/r/openssl_1.result
View file @
3f683e2b
...
...
@@ -38,7 +38,6 @@ f1
5
delete from t1;
ERROR 42000: DELETE command denied to user 'ssl_user4'@'localhost' for table 't1'
delete from mysql.user where user='ssl_user%';
delete from mysql.db where user='ssl_user%';
flush privileges;
drop user ssl_user1@localhost, ssl_user2@localhost,
ssl_user3@localhost, ssl_user4@localhost;
drop table t1;
mysql-test/r/rpl_openssl.result
View file @
3f683e2b
...
...
@@ -24,7 +24,8 @@ Slave_IO_State Master_Host Master_User Master_Port Connect_Retry Master_Log_File
stop slave;
change master to master_user='root',master_password='', master_ssl=0;
start slave;
drop user replssl@localhost;
drop table t1;
show slave status;
Slave_IO_State Master_Host Master_User Master_Port Connect_Retry Master_Log_File Read_Master_Log_Pos Relay_Log_File Relay_Log_Pos Relay_Master_Log_File Slave_IO_Running Slave_SQL_Running Replicate_Do_DB Replicate_Ignore_DB Replicate_Do_Table Replicate_Ignore_Table Replicate_Wild_Do_Table Replicate_Wild_Ignore_Table Last_Errno Last_Error Skip_Counter Exec_Master_Log_Pos Relay_Log_Space Until_Condition Until_Log_File Until_Log_Pos Master_SSL_Allowed Master_SSL_CA_File Master_SSL_CA_Path Master_SSL_Cert Master_SSL_Cipher Master_SSL_Key Seconds_Behind_Master
# 127.0.0.1 root MASTER_MYPORT 1 master-bin.000001
474 # # master-bin.000001 Yes Yes 0 0 47
4 # None 0 No MYSQL_TEST_DIR/std_data/cacert.pem MYSQL_TEST_DIR/std_data/client-cert.pem MYSQL_TEST_DIR/std_data/client-key.pem #
# 127.0.0.1 root MASTER_MYPORT 1 master-bin.000001
564 # # master-bin.000001 Yes Yes 0 0 56
4 # None 0 No MYSQL_TEST_DIR/std_data/cacert.pem MYSQL_TEST_DIR/std_data/client-cert.pem MYSQL_TEST_DIR/std_data/client-key.pem #
mysql-test/r/sp-security.result
View file @
3f683e2b
...
...
@@ -322,6 +322,7 @@ Warnings:
Warning 1287 'SHOW INNODB STATUS' is deprecated; use 'SHOW ENGINE INNODB STATUS' instead
GRANT EXECUTE ON PROCEDURE p1 TO user_bug7787@localhost;
DROP DATABASE db_bug7787;
drop user user_bug7787@localhost;
use test;
---> connection: root
...
...
mysql-test/r/sp_notembedded.result
View file @
3f683e2b
...
...
@@ -204,3 +204,4 @@ drop procedure bug10100pv|
drop procedure bug10100pd|
drop procedure bug10100pc|
drop view v1|
drop table t3|
mysql-test/r/trigger.result
View file @
3f683e2b
...
...
@@ -949,7 +949,7 @@ insert into t1 values
create function f2() returns int return (select max(b) from t2);
insert into t2 select a, f2() from t1;
load data infile '../std_data_ln/words.dat' into table t1 (a) set b:= f1();
drop table t1;
drop table t1
, t2
;
drop function f1;
drop function f2;
DROP TABLE IF EXISTS t1;
...
...
mysql-test/t/ctype_latin2_ch.test
View file @
3f683e2b
...
...
@@ -28,3 +28,5 @@ select * from t1 ignore index (primary) where tt like 'AA%';
select
*
from
t1
where
tt
like
'%AA%'
;
# End of 4.1 tests
drop
table
t1
;
mysql-test/t/grant2.test
View file @
3f683e2b
...
...
@@ -490,3 +490,4 @@ disconnect bug13310;
connection
default
;
REVOKE
ALL
PRIVILEGES
,
GRANT
OPTION
FROM
`a@`
@
localhost
;
drop
user
`a@`
@
localhost
;
mysql-test/t/openssl_1.test
View file @
3f683e2b
...
...
@@ -48,9 +48,9 @@ select * from t1;
delete
from
t1
;
connection
default
;
d
elete
from
mysql
.
user
where
user
=
'ssl_user%'
;
delete
from
mysql
.
db
where
user
=
'ssl_user%'
;
flush
privileges
;
d
rop
user
ssl_user1
@
localhost
,
ssl_user2
@
localhost
,
ssl_user3
@
localhost
,
ssl_user4
@
localhost
;
drop
table
t1
;
# End of 4.1 tests
mysql-test/t/rpl_openssl.test
View file @
3f683e2b
...
...
@@ -53,6 +53,7 @@ stop slave;
change
master
to
master_user
=
'root'
,
master_password
=
''
,
master_ssl
=
0
;
start
slave
;
connection
master
;
drop
user
replssl
@
localhost
;
drop
table
t1
;
save_master_pos
;
connection
slave
;
...
...
mysql-test/t/sp-security.test
View file @
3f683e2b
...
...
@@ -545,6 +545,7 @@ GRANT EXECUTE ON PROCEDURE p1 TO user_bug7787@localhost;
# Cleanup.
DROP
DATABASE
db_bug7787
;
drop
user
user_bug7787
@
localhost
;
use
test
;
...
...
mysql-test/t/sp_notembedded.test
View file @
3f683e2b
...
...
@@ -258,5 +258,6 @@ drop procedure bug10100pv|
drop
procedure
bug10100pd
|
drop
procedure
bug10100pc
|
drop
view
v1
|
drop
table
t3
|
delimiter
;
|
mysql-test/t/trigger.test
View file @
3f683e2b
...
...
@@ -1111,7 +1111,7 @@ insert into t1 values
create
function
f2
()
returns
int
return
(
select
max
(
b
)
from
t2
);
insert
into
t2
select
a
,
f2
()
from
t1
;
load
data
infile
'../std_data_ln/words.dat'
into
table
t1
(
a
)
set
b
:=
f1
();
drop
table
t1
;
drop
table
t1
,
t2
;
drop
function
f1
;
drop
function
f2
;
...
...
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