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
789088fc
Commit
789088fc
authored
Jun 04, 2007
by
skozlov/ksm@mysql.com/virtop.localdomain
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WL#3694, updated by pushbuild errors
parent
4137125f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
mysql-test/t/rpl_invoked_features.test
mysql-test/t/rpl_invoked_features.test
+6
-0
No files found.
mysql-test/t/rpl_invoked_features.test
View file @
789088fc
...
...
@@ -41,18 +41,22 @@ DROP FUNCTION IF EXISTS f1;
--
echo
eval
CREATE
TABLE
t1
(
a
INT
NOT
NULL
PRIMARY
KEY
,
b
INT
,
c
VARCHAR
(
64
))
ENGINE
=
$engine_type
;
--
disable_warnings
INSERT
INTO
t1
VALUES
(
1
,
1
,
'1'
);
INSERT
INTO
t1
VALUES
(
2
,
2
,
UUID
());
eval
CREATE
TABLE
t2
(
a
INT
,
b
INT
,
c
VARCHAR
(
64
))
ENGINE
=
$engine_type
;
INSERT
INTO
t2
VALUES
(
1
,
1
,
'1'
);
INSERT
INTO
t2
VALUES
(
2
,
2
,
UUID
());
--
enable_warnings
eval
CREATE
TABLE
t11
(
a
INT
NOT
NULL
PRIMARY
KEY
,
b
INT
,
c
VARCHAR
(
64
))
ENGINE
=
$engine_type2
;
--
disable_warnings
INSERT
INTO
t11
VALUES
(
1
,
1
,
'1'
);
INSERT
INTO
t11
VALUES
(
2
,
2
,
UUID
());
eval
CREATE
TABLE
t12
(
a
INT
,
b
INT
,
c
VARCHAR
(
64
))
ENGINE
=
$engine_type2
;
INSERT
INTO
t12
VALUES
(
1
,
1
,
'1'
);
INSERT
INTO
t12
VALUES
(
2
,
2
,
UUID
());
--
enable_warnings
# Create invoked features
--
echo
...
...
@@ -139,6 +143,7 @@ DELIMITER ;|
# Do some actions for non-transactional tables
--
echo
--
disable_warnings
CREATE
TABLE
t3
SELECT
*
FROM
v1
;
INSERT
INTO
t1
VALUES
(
3
,
3
,
''
);
UPDATE
t1
SET
c
=
'2'
WHERE
a
=
1
;
...
...
@@ -164,6 +169,7 @@ INSERT INTO t11 VALUES(6,6,f1(6));
INSERT
INTO
t11
VALUES
(
102
,
102
,
''
);
INSERT
INTO
t11
VALUES
(
7
,
7
,
f2
(
7
));
INSERT
INTO
t11
VALUES
(
103
,
103
,
''
);
--
enable_warnings
# Scheduler is on
--
echo
...
...
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