mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Bug#21014: Segmentation fault of mysqldump on view
mysqldump did not select the correct database before trying to dump views from it. this resulted in an empty result set, which in turn startled mysql-dump into a core-dump. this only happened for views, not for tables, and was only visible with multiple databases that weren't by sheer luck in the order mysqldump required, anyway. this fixes by selecting the correct database before dumping views; it also catches the empty set-condition if it should occur for other reasons.
This commit is contained in:

parent
b05cd02746
commit
00ec3973f7
@ -2781,6 +2781,12 @@ static my_bool dump_all_views_in_db(char *database)
|
|||||||
uint numrows;
|
uint numrows;
|
||||||
char table_buff[NAME_LEN*2+3];
|
char table_buff[NAME_LEN*2+3];
|
||||||
|
|
||||||
|
if (mysql_select_db(sock, database))
|
||||||
|
{
|
||||||
|
DB_error(sock, "when selecting the database");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
if (opt_xml)
|
if (opt_xml)
|
||||||
print_xml_tag1(md_result_file, "", "database name=", database, "\n");
|
print_xml_tag1(md_result_file, "", "database name=", database, "\n");
|
||||||
if (lock_tables)
|
if (lock_tables)
|
||||||
@ -3436,12 +3442,13 @@ static my_bool get_view_structure(char *table, char* db)
|
|||||||
mysql_free_result(table_res);
|
mysql_free_result(table_res);
|
||||||
|
|
||||||
/* Get the result from "select ... information_schema" */
|
/* Get the result from "select ... information_schema" */
|
||||||
if (!(table_res= mysql_store_result(sock)))
|
if (!(table_res= mysql_store_result(sock)) ||
|
||||||
|
!(row= mysql_fetch_row(table_res)))
|
||||||
{
|
{
|
||||||
safe_exit(EX_MYSQLERR);
|
safe_exit(EX_MYSQLERR);
|
||||||
DBUG_RETURN(1);
|
DBUG_RETURN(1);
|
||||||
}
|
}
|
||||||
row= mysql_fetch_row(table_res);
|
|
||||||
lengths= mysql_fetch_lengths(table_res);
|
lengths= mysql_fetch_lengths(table_res);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -2844,3 +2844,33 @@ DROP TABLE IF EXISTS `v1`;
|
|||||||
drop view v1;
|
drop view v1;
|
||||||
drop table t1;
|
drop table t1;
|
||||||
drop database mysqldump_test_db;
|
drop database mysqldump_test_db;
|
||||||
|
create database mysqldump_tables;
|
||||||
|
use mysqldump_tables;
|
||||||
|
create table basetable ( id serial, tag varchar(64) );
|
||||||
|
create database mysqldump_views;
|
||||||
|
use mysqldump_views;
|
||||||
|
create view nasishnasifu as select mysqldump_tables.basetable.id from
|
||||||
|
mysqldump_tables.basetable;
|
||||||
|
|
||||||
|
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `mysqldump_tables` /*!40100 DEFAULT CHARACTER SET latin1 */;
|
||||||
|
|
||||||
|
USE `mysqldump_tables`;
|
||||||
|
CREATE TABLE `basetable` (
|
||||||
|
`id` bigint(20) unsigned NOT NULL auto_increment,
|
||||||
|
`tag` varchar(64) default NULL,
|
||||||
|
UNIQUE KEY `id` (`id`)
|
||||||
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||||||
|
|
||||||
|
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `mysqldump_views` /*!40100 DEFAULT CHARACTER SET latin1 */;
|
||||||
|
|
||||||
|
USE `mysqldump_views`;
|
||||||
|
/*!50001 CREATE TABLE `nasishnasifu` (
|
||||||
|
`id` bigint(20) unsigned
|
||||||
|
) */;
|
||||||
|
/*!50001 CREATE ALGORITHM=UNDEFINED */
|
||||||
|
/*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */
|
||||||
|
/*!50001 VIEW `mysqldump_views`.`nasishnasifu` AS select `mysqldump_tables`.`basetable`.`id` AS `id` from `mysqldump_tables`.`basetable` */;
|
||||||
|
drop view nasishnasifu;
|
||||||
|
drop database mysqldump_views;
|
||||||
|
drop table mysqldump_tables.basetable;
|
||||||
|
drop database mysqldump_tables;
|
||||||
|
@ -1195,6 +1195,7 @@ drop table t1;
|
|||||||
--exec $MYSQL_DUMP --force -N --compact --skip-comments test
|
--exec $MYSQL_DUMP --force -N --compact --skip-comments test
|
||||||
--echo } mysqldump
|
--echo } mysqldump
|
||||||
drop view v1;
|
drop view v1;
|
||||||
|
|
||||||
# BUG#17201 Spurious 'DROP DATABASE' in output,
|
# BUG#17201 Spurious 'DROP DATABASE' in output,
|
||||||
# also confusion between tables and views.
|
# also confusion between tables and views.
|
||||||
# Example code from Markus Popp
|
# Example code from Markus Popp
|
||||||
@ -1211,3 +1212,21 @@ insert into t1 values (0815);
|
|||||||
drop view v1;
|
drop view v1;
|
||||||
drop table t1;
|
drop table t1;
|
||||||
drop database mysqldump_test_db;
|
drop database mysqldump_test_db;
|
||||||
|
|
||||||
|
# Bug21014 Segmentation fault of mysqldump on view
|
||||||
|
|
||||||
|
create database mysqldump_tables;
|
||||||
|
use mysqldump_tables;
|
||||||
|
create table basetable ( id serial, tag varchar(64) );
|
||||||
|
|
||||||
|
create database mysqldump_views;
|
||||||
|
use mysqldump_views;
|
||||||
|
create view nasishnasifu as select mysqldump_tables.basetable.id from
|
||||||
|
mysqldump_tables.basetable;
|
||||||
|
|
||||||
|
--exec $MYSQL_DUMP --skip-comments --compact --databases mysqldump_tables mysqldump_views;
|
||||||
|
|
||||||
|
drop view nasishnasifu;
|
||||||
|
drop database mysqldump_views;
|
||||||
|
drop table mysqldump_tables.basetable;
|
||||||
|
drop database mysqldump_tables;
|
||||||
|
Reference in New Issue
Block a user