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
5c49e6eb
Commit
5c49e6eb
authored
Mar 19, 2009
by
Satya B
Browse files
Options
Browse Files
Download
Plain Diff
Merge 5.0-bugteam to 5.1-bugteam
parents
53849a24
322fe741
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
44 additions
and
1 deletion
+44
-1
client/mysqldump.c
client/mysqldump.c
+2
-1
mysql-test/suite/federated/federated.result
mysql-test/suite/federated/federated.result
+20
-0
mysql-test/suite/federated/federated.test
mysql-test/suite/federated/federated.test
+22
-0
No files found.
client/mysqldump.c
View file @
5c49e6eb
...
...
@@ -4588,7 +4588,8 @@ char check_if_ignore_table(const char *table_name, char *table_type)
*/
if
(
!
opt_no_data
&&
(
!
my_strcasecmp
(
&
my_charset_latin1
,
table_type
,
"MRG_MyISAM"
)
||
!
strcmp
(
table_type
,
"MRG_ISAM"
)))
!
strcmp
(
table_type
,
"MRG_ISAM"
)
||
!
strcmp
(
table_type
,
"FEDERATED"
)))
result
=
IGNORE_DATA
;
}
mysql_free_result
(
res
);
...
...
mysql-test/suite/federated/federated.result
View file @
5c49e6eb
...
...
@@ -2130,6 +2130,26 @@ SELECT t1.a FROM t1, t1 as t2 WHERE t2.b NOT LIKE t1.b;
a
DROP TABLE t1;
DROP TABLE t1;
#
# BUG#21360 - mysqldump error on federated tables
#
#Switch to Connection Slave
CREATE TABLE t1(id VARCHAR(20) NOT NULL, PRIMARY KEY(id));
INSERT INTO t1 VALUES ('text1'),('text2'),('text3'),('text4');
#Switch to Connection Master
CREATE TABLE t1(id VARCHAR(20) NOT NULL, PRIMARY KEY(id)) ENGINE=FEDERATED
CONNECTION='mysql://root@127.0.0.1:SLAVE_PORT/test/t1';
# Dump table t1 using mysqldump tool
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `t1` (
`id` varchar(20) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=FEDERATED DEFAULT CHARSET=latin1 CONNECTION='mysql://root@127.0.0.1:SLAVE_PORT/test/t1';
/*!40101 SET character_set_client = @saved_cs_client */;
DROP TABLE t1;
#Switch to Connection Slave
DROP TABLE t1;
End of 5.0 tests
create server 's1' foreign data wrapper 'mysql' options (port 3306);
drop server 's1';
...
...
mysql-test/suite/federated/federated.test
View file @
5c49e6eb
...
...
@@ -1942,6 +1942,28 @@ DROP TABLE t1;
connection
master
;
DROP
TABLE
t1
;
--
echo
#
--
echo
# BUG#21360 - mysqldump error on federated tables
--
echo
#
connection
slave
;
--
echo
#Switch to Connection Slave
CREATE
TABLE
t1
(
id
VARCHAR
(
20
)
NOT
NULL
,
PRIMARY
KEY
(
id
));
INSERT
INTO
t1
VALUES
(
'text1'
),(
'text2'
),(
'text3'
),(
'text4'
);
connection
master
;
--
echo
#Switch to Connection Master
--
replace_result
$SLAVE_MYPORT
SLAVE_PORT
eval
CREATE
TABLE
t1
(
id
VARCHAR
(
20
)
NOT
NULL
,
PRIMARY
KEY
(
id
))
ENGINE
=
FEDERATED
CONNECTION
=
'mysql://root@127.0.0.1:$SLAVE_MYPORT/test/t1'
;
--
echo
# Dump table t1 using mysqldump tool
--
replace_result
$SLAVE_MYPORT
SLAVE_PORT
--
exec
$MYSQL_DUMP
--
compact
test
t1
DROP
TABLE
t1
;
connection
slave
;
--
echo
#Switch to Connection Slave
DROP
TABLE
t1
;
connection
default
;
--
echo
End
of
5.0
tests
...
...
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