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
caa15604
Commit
caa15604
authored
Jun 04, 2007
by
skozlov/ksm@mysql.com/virtop.localdomain
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WL#3694
parent
789088fc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
4 deletions
+15
-4
mysql-test/r/rpl_invoked_features.result
mysql-test/r/rpl_invoked_features.result
+6
-2
mysql-test/t/rpl_invoked_features.test
mysql-test/t/rpl_invoked_features.test
+9
-2
No files found.
mysql-test/r/rpl_invoked_features.result
View file @
caa15604
...
...
@@ -5,10 +5,12 @@ reset slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
start slave;
USE test;
DROP VIEW IF EXISTS v1,v11;
DROP TABLE IF EXISTS t1,t2,t3,t11,t12,t13;
DROP VIEW IF EXISTS v1,v2;
DROP PROCEDURE IF EXISTS p1;
DROP PROCEDURE IF EXISTS p11;
DROP FUNCTION IF EXISTS f1;
DROP FUNCTION IF EXISTS f2;
CREATE TABLE t1 (a INT NOT NULL PRIMARY KEY, b INT, c VARCHAR(64)) ENGINE=myisam;
INSERT INTO t1 VALUES (1,1,'1');
...
...
@@ -436,7 +438,9 @@ UPDATE t13 SET c='';
DROP VIEW IF EXISTS v1,v11;
DROP TABLE IF EXISTS t1,t2,t3,t11,t12,t13;
DROP VIEW IF EXISTS v1,v2;
DROP PROCEDURE IF EXISTS p1;
DROP PROCEDURE IF EXISTS p11;
DROP FUNCTION IF EXISTS f1;
DROP FUNCTION IF EXISTS f2;
mysql-test/t/rpl_invoked_features.test
View file @
caa15604
...
...
@@ -26,10 +26,12 @@
USE
test
;
--
disable_warnings
DROP
VIEW
IF
EXISTS
v1
,
v11
;
DROP
TABLE
IF
EXISTS
t1
,
t2
,
t3
,
t11
,
t12
,
t13
;
DROP
VIEW
IF
EXISTS
v1
,
v2
;
DROP
PROCEDURE
IF
EXISTS
p1
;
DROP
PROCEDURE
IF
EXISTS
p11
;
DROP
FUNCTION
IF
EXISTS
f1
;
DROP
FUNCTION
IF
EXISTS
f2
;
--
enable_warnings
...
...
@@ -259,12 +261,17 @@ UPDATE t13 SET c='';
--
exec
rm
$MYSQLTEST_VARDIR
/
tmp
/
rpl_invoked_features_slave
.
sql
# Remove tables,views,procedures,functions
--
connection
master
--
echo
--
disable_warnings
DROP
VIEW
IF
EXISTS
v1
,
v11
;
DROP
TABLE
IF
EXISTS
t1
,
t2
,
t3
,
t11
,
t12
,
t13
;
DROP
VIEW
IF
EXISTS
v1
,
v2
;
DROP
PROCEDURE
IF
EXISTS
p1
;
DROP
PROCEDURE
IF
EXISTS
p11
;
DROP
FUNCTION
IF
EXISTS
f1
;
DROP
FUNCTION
IF
EXISTS
f2
;
--
enable_warnings
--
sync_slave_with_master
slave
# End 5.1 test case
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