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
a4aa8fb9
Commit
a4aa8fb9
authored
Sep 16, 2005
by
eric@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added testcase for BUG#13118
parent
19feb927
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
81 additions
and
0 deletions
+81
-0
mysql-test/r/federated_bug_13118.result
mysql-test/r/federated_bug_13118.result
+39
-0
mysql-test/t/federated_bug_13118.test
mysql-test/t/federated_bug_13118.test
+42
-0
No files found.
mysql-test/r/federated_bug_13118.result
0 → 100644
View file @
a4aa8fb9
stop slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
reset master;
reset slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
start slave;
stop slave;
DROP DATABASE IF EXISTS federated;
CREATE DATABASE federated;
DROP DATABASE IF EXISTS federated;
CREATE DATABASE federated;
DROP TABLE IF EXISTS federated.bug_13118_table;
CREATE TABLE federated.bug_13118_table (
`foo` integer,
`bar` integer
);
DROP TABLE IF EXISTS federated.t1;
CREATE TABLE federated.t1 (
`foo` integer,
`bar` integer
) ENGINE="FEDERATED"
CONNECTION='mysql://root@127.0.0.1:SLAVE_PORT/federated/bug_13118_table';
SELECT * from federated.t1;
foo bar
INSERT INTO federated.t1 VALUES (1,1);
SELECT * FROM federated.t1;
foo bar
1 1
INSERT INTO federated.t1 VALUES (1,1);
SELECT * FROM federated.t1;
foo bar
1 1
1 1
DROP TABLE federated.t1;
DROP TABLE federated.bug_13118_table;
DROP TABLE IF EXISTS federated.t1;
DROP DATABASE IF EXISTS federated;
DROP TABLE IF EXISTS federated.t1;
DROP DATABASE IF EXISTS federated;
mysql-test/t/federated_bug_13118.test
0 → 100644
View file @
a4aa8fb9
source
include
/
federated
.
inc
;
connection
slave
;
--
disable_warnings
DROP
TABLE
IF
EXISTS
federated
.
bug_13118_table
;
--
enable_warnings
CREATE
TABLE
federated
.
bug_13118_table
(
`foo`
integer
,
`bar`
integer
);
connection
master
;
--
disable_warnings
DROP
TABLE
IF
EXISTS
federated
.
t1
;
--
enable_warnings
--
replace_result
$SLAVE_MYPORT
SLAVE_PORT
eval
CREATE
TABLE
federated
.
t1
(
`foo`
integer
,
`bar`
integer
)
ENGINE
=
"FEDERATED"
CONNECTION
=
'mysql://root@127.0.0.1:$SLAVE_MYPORT/federated/bug_13118_table'
;
SELECT
*
from
federated
.
t1
;
INSERT
INTO
federated
.
t1
VALUES
(
1
,
1
);
SELECT
*
FROM
federated
.
t1
;
INSERT
INTO
federated
.
t1
VALUES
(
1
,
1
);
SELECT
*
FROM
federated
.
t1
;
DROP
TABLE
federated
.
t1
;
connection
slave
;
DROP
TABLE
federated
.
bug_13118_table
;
source
include
/
federated_cleanup
.
inc
;
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