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
8aa1e579
Commit
8aa1e579
authored
Jan 12, 2012
by
Georgi Kodinov
Browse files
Options
Browse Files
Download
Plain Diff
weave merge mysql-5.1->mysql-5.1-security
parents
b8291e2b
7c7506cc
Changes
49
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
49 changed files
with
1333 additions
and
454 deletions
+1333
-454
client/mysqldump.c
client/mysqldump.c
+333
-128
cmd-line-utils/libedit/chartype.h
cmd-line-utils/libedit/chartype.h
+3
-3
cmd-line-utils/libedit/eln.c
cmd-line-utils/libedit/eln.c
+1
-1
cmd-line-utils/libedit/readline.c
cmd-line-utils/libedit/readline.c
+1
-1
mysql-test/r/init_connect.result
mysql-test/r/init_connect.result
+2
-0
mysql-test/r/mysqldump.result
mysql-test/r/mysqldump.result
+439
-0
mysql-test/suite/binlog/r/binlog_stm_unsafe_warning.result
mysql-test/suite/binlog/r/binlog_stm_unsafe_warning.result
+3
-3
mysql-test/suite/binlog/t/binlog_stm_unsafe_warning.test
mysql-test/suite/binlog/t/binlog_stm_unsafe_warning.test
+18
-5
mysql-test/suite/federated/federated_server.result
mysql-test/suite/federated/federated_server.result
+2
-2
mysql-test/suite/federated/federated_server.test
mysql-test/suite/federated/federated_server.test
+6
-2
mysql-test/suite/innodb/r/innodb_bug12400341.result
mysql-test/suite/innodb/r/innodb_bug12400341.result
+25
-0
mysql-test/suite/innodb/t/innodb_bug12400341-master.opt
mysql-test/suite/innodb/t/innodb_bug12400341-master.opt
+1
-0
mysql-test/suite/innodb/t/innodb_bug12400341.test
mysql-test/suite/innodb/t/innodb_bug12400341.test
+103
-0
mysql-test/suite/innodb_plugin/r/innodb_bug12400341.result
mysql-test/suite/innodb_plugin/r/innodb_bug12400341.result
+25
-0
mysql-test/suite/innodb_plugin/t/innodb_bug12400341-master.opt
...-test/suite/innodb_plugin/t/innodb_bug12400341-master.opt
+1
-0
mysql-test/suite/innodb_plugin/t/innodb_bug12400341.test
mysql-test/suite/innodb_plugin/t/innodb_bug12400341.test
+103
-0
mysql-test/t/init_connect.test
mysql-test/t/init_connect.test
+8
-0
mysql-test/t/mysqldump.test
mysql-test/t/mysqldump.test
+112
-0
sql/sql_connect.cc
sql/sql_connect.cc
+27
-2
storage/federated/ha_federated.cc
storage/federated/ha_federated.cc
+10
-0
storage/innobase/buf/buf0buf.c
storage/innobase/buf/buf0buf.c
+2
-6
storage/innobase/handler/ha_innodb.cc
storage/innobase/handler/ha_innodb.cc
+10
-0
storage/innobase/include/mem0mem.ic
storage/innobase/include/mem0mem.ic
+0
-4
storage/innobase/include/os0proc.h
storage/innobase/include/os0proc.h
+0
-11
storage/innobase/include/trx0rseg.ic
storage/innobase/include/trx0rseg.ic
+8
-1
storage/innobase/include/trx0sys.h
storage/innobase/include/trx0sys.h
+5
-0
storage/innobase/include/univ.i
storage/innobase/include/univ.i
+0
-17
storage/innobase/include/ut0mem.h
storage/innobase/include/ut0mem.h
+3
-23
storage/innobase/include/ut0rnd.ic
storage/innobase/include/ut0rnd.ic
+1
-1
storage/innobase/mem/mem0pool.c
storage/innobase/mem/mem0pool.c
+1
-5
storage/innobase/os/os0proc.c
storage/innobase/os/os0proc.c
+1
-32
storage/innobase/row/row0mysql.c
storage/innobase/row/row0mysql.c
+12
-0
storage/innobase/trx/trx0sys.c
storage/innobase/trx/trx0sys.c
+4
-0
storage/innobase/ut/ut0mem.c
storage/innobase/ut/ut0mem.c
+1
-64
storage/innodb_plugin/ChangeLog
storage/innodb_plugin/ChangeLog
+9
-0
storage/innodb_plugin/buf/buf0buf.c
storage/innodb_plugin/buf/buf0buf.c
+1
-4
storage/innodb_plugin/handler/ha_innodb.cc
storage/innodb_plugin/handler/ha_innodb.cc
+10
-0
storage/innodb_plugin/include/mem0mem.ic
storage/innodb_plugin/include/mem0mem.ic
+0
-4
storage/innodb_plugin/include/trx0rseg.ic
storage/innodb_plugin/include/trx0rseg.ic
+8
-1
storage/innodb_plugin/include/trx0sys.h
storage/innodb_plugin/include/trx0sys.h
+6
-0
storage/innodb_plugin/include/univ.i
storage/innodb_plugin/include/univ.i
+0
-17
storage/innodb_plugin/include/ut0mem.h
storage/innodb_plugin/include/ut0mem.h
+5
-26
storage/innodb_plugin/include/ut0rnd.ic
storage/innodb_plugin/include/ut0rnd.ic
+1
-1
storage/innodb_plugin/mem/mem0pool.c
storage/innodb_plugin/mem/mem0pool.c
+1
-5
storage/innodb_plugin/os/os0proc.c
storage/innodb_plugin/os/os0proc.c
+0
-3
storage/innodb_plugin/row/row0mysql.c
storage/innodb_plugin/row/row0mysql.c
+14
-0
storage/innodb_plugin/trx/trx0sys.c
storage/innodb_plugin/trx/trx0sys.c
+5
-0
storage/innodb_plugin/ut/ut0mem.c
storage/innodb_plugin/ut/ut0mem.c
+1
-81
unittest/mysys/bitmap-t.c
unittest/mysys/bitmap-t.c
+1
-1
No files found.
client/mysqldump.c
View file @
8aa1e579
This diff is collapsed.
Click to expand it.
cmd-line-utils/libedit/chartype.h
View file @
8aa1e579
...
...
@@ -45,11 +45,11 @@
* seems to actually advertise this properly, despite Unicode 3.1 having
* been around since 2001... */
/* XXXMYSQL : Added FreeBSD to bypass this check.
TODO : Verify if FreeBSD stores ISO 10646 in wchar_t. */
/* XXXMYSQL : Added FreeBSD
& AIX
to bypass this check.
TODO : Verify if FreeBSD
& AIX
stores ISO 10646 in wchar_t. */
#if !defined(__NetBSD__) && !defined(__sun) \
&& !(defined(__APPLE__) && defined(__MACH__)) \
&& !defined(__FreeBSD__)
&& !defined(__FreeBSD__)
&& !defined(_AIX)
#ifndef __STDC_ISO_10646__
/* In many places it is assumed that the first 127 code points are ASCII
* compatible, so ensure wchar_t indeed does ISO 10646 and not some other
...
...
cmd-line-utils/libedit/eln.c
View file @
8aa1e579
...
...
@@ -200,7 +200,7 @@ el_set(EditLine *el, int op, ...)
ret
=
-
1
;
goto
out
;
}
// XXX: The two strdup's leak
/* XXX: The two strdups leak. */
ret
=
map_addfunc
(
el
,
Strdup
(
wargv
[
0
]),
Strdup
(
wargv
[
1
]),
func
);
ct_free_argv
(
wargv
);
...
...
cmd-line-utils/libedit/readline.c
View file @
8aa1e579
...
...
@@ -1978,7 +1978,7 @@ rl_callback_read_char()
}
else
wbuf
=
NULL
;
(
*
(
void
(
*
)(
const
char
*
))
rl_linefunc
)(
wbuf
);
//el_set(e, EL_UNBUFFERED, 1);
/*el_set(e, EL_UNBUFFERED, 1);*/
}
}
...
...
mysql-test/r/init_connect.result
View file @
8aa1e579
...
...
@@ -20,6 +20,8 @@ hex(a)
616263
set GLOBAL init_connect="adsfsdfsdfs";
select @a;
ERROR 08S01: Aborted connection to db: 'test' user: 'user_1' host: 'localhost' (init_connect command failed)
select @a;
Got one of the listed errors
drop table t1;
End of 4.1 tests
...
...
mysql-test/r/mysqldump.result
View file @
8aa1e579
This diff is collapsed.
Click to expand it.
mysql-test/suite/binlog/r/binlog_stm_unsafe_warning.result
View file @
8aa1e579
...
...
@@ -34,13 +34,13 @@ USE test;
#
SET @old_log_warnings = @@log_warnings;
DROP TABLE IF EXISTS t1;
CREATE TABLE t1 (a VARCHAR(36), b VARCHAR(1
0
));
CREATE TABLE t1 (a VARCHAR(36), b VARCHAR(1
5
));
SET GLOBAL LOG_WARNINGS = 0;
INSERT INTO t1 VALUES(UUID(), '
Bug#46265
');
INSERT INTO t1 VALUES(UUID(), '
timestamp
');
Warnings:
Note 1592 Statement may not be safe to log in statement format.
SET GLOBAL LOG_WARNINGS = 1;
INSERT INTO t1 VALUES(UUID(), '
Bug#46265
');
INSERT INTO t1 VALUES(UUID(), '
timestamp
');
Warnings:
Note 1592 Statement may not be safe to log in statement format.
DROP TABLE t1;
...
...
mysql-test/suite/binlog/t/binlog_stm_unsafe_warning.test
View file @
8aa1e579
...
...
@@ -80,22 +80,33 @@ eval USE $old_db;
--
echo
# Bug#46265: Can not disable warning about unsafe statements for binary logging
--
echo
#
# Here introducing a sleep of one Second, just to make sure
# that when this test executes with "--repeat" option,
# the timestamp value is different and hence the Occcurrence count is one.
--
sleep
1
SET
@
old_log_warnings
=
@@
log_warnings
;
--
disable_warnings
DROP
TABLE
IF
EXISTS
t1
;
--
enable_warnings
CREATE
TABLE
t1
(
a
VARCHAR
(
36
),
b
VARCHAR
(
10
));
let
BINLOG_COUNTER1
=
`select CONVERT(NOW(),UNSIGNED) as timestmap from dual`
;
CREATE
TABLE
t1
(
a
VARCHAR
(
36
),
b
VARCHAR
(
15
));
SET
GLOBAL
LOG_WARNINGS
=
0
;
INSERT
INTO
t1
VALUES
(
UUID
(),
'Bug#46265'
);
# Replacing the result file content here.
# Instead of writing $BINLOG_COUNTER1 value to result file, writing a fixed string timestamp to it.
--
replace_result
$BINLOG_COUNTER1
timestamp
eval
INSERT
INTO
t1
VALUES
(
UUID
(),
'$BINLOG_COUNTER1'
);
SET
GLOBAL
LOG_WARNINGS
=
1
;
INSERT
INTO
t1
VALUES
(
UUID
(),
'Bug#46265'
);
--
replace_result
$BINLOG_COUNTER1
timestamp
eval
INSERT
INTO
t1
VALUES
(
UUID
(),
'$BINLOG_COUNTER1'
);
DROP
TABLE
t1
;
SET
GLOBAL
log_warnings
=
@
old_log_warnings
;
let
$log_error_
=
`SELECT @@GLOBAL.log_error`
;
if
(
!
`select LENGTH('$log_error_')`
)
if
(
!
$log_error_
)
{
# MySQL Server on windows is started with --console and thus
# does not know the location of its .err log, use default location
...
...
@@ -111,7 +122,9 @@ perl;
use
strict
;
my
$log_error
=
$ENV
{
'LOG_ERROR'
}
or
die
"LOG_ERROR not set"
;
open
(
FILE
,
"
$log_error
"
)
or
die
(
"Unable to open
$log_error
: $!
\n
"
);
my
$count
=
()
=
grep
(
/
Bug
#46265/g,<FILE>);
my
$binlog_counter
=
$ENV
{
'BINLOG_COUNTER1'
}
or
die
"BINLOG_COUNTER1 not set"
;
my
$count
=
()
=
grep
(
/
$binlog_counter
/
g
,
<
FILE
>
);
# Grep the timestamp value from the error file.
print
"Occurrences:
$count
\n
"
;
close
(
FILE
);
EOF
mysql-test/suite/federated/federated_server.result
View file @
8aa1e579
...
...
@@ -54,7 +54,7 @@ PASSWORD '',
PORT SLAVE_PORT,
SOCKET '',
OWNER 'root');
select * from mysql.servers;
select * from mysql.servers
order by Server_name
;
Server_name Host Db Username Password Port Socket Wrapper Owner
server_one 127.0.0.1 first_db root SLAVE_PORT mysql root
server_two 127.0.0.1 second_db root SLAVE_PORT mysql root
...
...
@@ -154,7 +154,7 @@ id name
drop table federated.t1;
drop server 'server_one';
drop server 'server_two';
select * from mysql.servers;
select * from mysql.servers
order by Server_name
;
Server_name Host Db Username Password Port Socket Wrapper Owner
drop table first_db.t1;
drop table second_db.t1;
...
...
mysql-test/suite/federated/federated_server.test
View file @
8aa1e579
...
...
@@ -62,7 +62,9 @@ eval create server 'server_two' foreign data wrapper 'mysql' options
OWNER
'root'
);
--
replace_result
$SLAVE_MYPORT
SLAVE_PORT
eval
select
*
from
mysql
.
servers
;
# Adding 'order by' clause here, in order to maintain consistent result out of the select query.
#eval select * from mysql.servers;
eval
select
*
from
mysql
.
servers
order
by
Server_name
;
DROP
TABLE
IF
EXISTS
federated
.
old
;
--
replace_result
$SLAVE_MYPORT
SLAVE_PORT
...
...
@@ -147,7 +149,9 @@ drop table federated.t1;
drop
server
'server_one'
;
drop
server
'server_two'
;
select
*
from
mysql
.
servers
;
# Adding 'order by' clause here, in order to maintain consistent result out of the select query.
#select * from mysql.servers;
eval
select
*
from
mysql
.
servers
order
by
Server_name
;
connection
slave
;
drop
table
first_db
.
t1
;
...
...
mysql-test/suite/innodb/r/innodb_bug12400341.result
0 → 100644
View file @
8aa1e579
call mtr.add_suppression("InnoDB: Warning: cannot find a free slot for an undo log. Do you have too");
show variables like "max_connections";
Variable_name Value
max_connections 64
show variables like "innodb_thread_concurrency";
Variable_name Value
innodb_thread_concurrency 0
show variables like "innodb_file_per_table";
Variable_name Value
innodb_file_per_table ON
drop database if exists mysqltest;
create database mysqltest;
CREATE TABLE mysqltest.transtable (id int unsigned NOT NULL PRIMARY KEY, val int DEFAULT 0) ENGINE=InnoDB;
select count(*) from information_schema.processlist;
count(*)
33
CREATE TABLE mysqltest.testtable (id int unsigned not null primary key) ENGINE=InnoDB;
ERROR HY000: Can't create table 'mysqltest.testtable' (errno: 177)
select count(*) from information_schema.processlist;
count(*)
33
select count(*) from information_schema.processlist;
count(*)
33
drop database mysqltest;
mysql-test/suite/innodb/t/innodb_bug12400341-master.opt
0 → 100644
View file @
8aa1e579
--max_connections=64 --innodb_thread_concurrency=0 --innodb_file_per_table
mysql-test/suite/innodb/t/innodb_bug12400341.test
0 → 100644
View file @
8aa1e579
# Test for bug #12400341: INNODB CAN LEAVE ORPHAN IBD FILES AROUND
--
source
include
/
have_innodb
.
inc
if
(
`select count(*)=0 from information_schema.global_variables where variable_name = 'INNODB_TRX_RSEG_N_SLOTS_DEBUG'`
)
{
--
skip
Test
requires
InnoDB
built
with
UNIV_DEBUG
definition
.
}
call
mtr
.
add_suppression
(
"InnoDB: Warning: cannot find a free slot for an undo log. Do you have too"
);
--
disable_query_log
set
@
old_innodb_trx_rseg_n_slots_debug
=
@@
innodb_trx_rseg_n_slots_debug
;
set
global
innodb_trx_rseg_n_slots_debug
=
32
;
--
enable_query_log
show
variables
like
"max_connections"
;
show
variables
like
"innodb_thread_concurrency"
;
show
variables
like
"innodb_file_per_table"
;
--
disable_warnings
drop
database
if
exists
mysqltest
;
--
enable_warnings
create
database
mysqltest
;
CREATE
TABLE
mysqltest
.
transtable
(
id
int
unsigned
NOT
NULL
PRIMARY
KEY
,
val
int
DEFAULT
0
)
ENGINE
=
InnoDB
;
--
disable_query_log
#
# Insert in 1 transaction which needs over 1 page undo record to avoid the insert_undo cached,
# because the cached insert_undo can be reused at "CREATE TABLE" statement later.
#
START
TRANSACTION
;
let
$c
=
1024
;
while
(
$c
)
{
eval
INSERT
INTO
mysqltest
.
transtable
(
id
)
VALUES
(
$c
);
dec
$c
;
}
COMMIT
;
let
$c
=
32
;
while
(
$c
)
{
# if failed at here, it might be shortage of file descriptors limit.
connect
(
con
$c
,
localhost
,
root
,,);
dec
$c
;
}
--
enable_query_log
select
count
(
*
)
from
information_schema
.
processlist
;
#
# fill the all undo slots
#
--
disable_query_log
let
$c
=
32
;
while
(
$c
)
{
connection
con
$c
;
START
TRANSACTION
;
eval
UPDATE
mysqltest
.
transtable
SET
val
=
1
WHERE
id
=
33
-
$c
;
dec
$c
;
}
--
enable_query_log
connection
default
;
--
error
ER_CANT_CREATE_TABLE
CREATE
TABLE
mysqltest
.
testtable
(
id
int
unsigned
not
null
primary
key
)
ENGINE
=
InnoDB
;
select
count
(
*
)
from
information_schema
.
processlist
;
--
disable_query_log
let
$c
=
32
;
while
(
$c
)
{
connection
con
$c
;
ROLLBACK
;
dec
$c
;
}
--
enable_query_log
connection
default
;
select
count
(
*
)
from
information_schema
.
processlist
;
--
disable_query_log
let
$c
=
32
;
while
(
$c
)
{
disconnect
con
$c
;
dec
$c
;
}
--
enable_query_log
#
# If the isolated .ibd file remained, the drop database should fail.
#
drop
database
mysqltest
;
--
disable_query_log
set
global
innodb_trx_rseg_n_slots_debug
=
@
old_innodb_trx_rseg_n_slots_debug
;
--
enable_query_log
mysql-test/suite/innodb_plugin/r/innodb_bug12400341.result
0 → 100644
View file @
8aa1e579
call mtr.add_suppression("InnoDB: Warning: cannot find a free slot for an undo log. Do you have too");
show variables like "max_connections";
Variable_name Value
max_connections 64
show variables like "innodb_thread_concurrency";
Variable_name Value
innodb_thread_concurrency 0
show variables like "innodb_file_per_table";
Variable_name Value
innodb_file_per_table ON
drop database if exists mysqltest;
create database mysqltest;
CREATE TABLE mysqltest.transtable (id int unsigned NOT NULL PRIMARY KEY, val int DEFAULT 0) ENGINE=InnoDB;
select count(*) from information_schema.processlist;
count(*)
33
CREATE TABLE mysqltest.testtable (id int unsigned not null primary key) ENGINE=InnoDB;
ERROR HY000: Can't create table 'mysqltest.testtable' (errno: 177)
select count(*) from information_schema.processlist;
count(*)
33
select count(*) from information_schema.processlist;
count(*)
33
drop database mysqltest;
mysql-test/suite/innodb_plugin/t/innodb_bug12400341-master.opt
0 → 100644
View file @
8aa1e579
--max_connections=64 --innodb_thread_concurrency=0 --innodb_file_per_table
mysql-test/suite/innodb_plugin/t/innodb_bug12400341.test
0 → 100644
View file @
8aa1e579
# Test for bug #12400341: INNODB CAN LEAVE ORPHAN IBD FILES AROUND
--
source
include
/
have_innodb_plugin
.
inc
if
(
`select count(*)=0 from information_schema.global_variables where variable_name = 'INNODB_TRX_RSEG_N_SLOTS_DEBUG'`
)
{
--
skip
Test
requires
InnoDB
built
with
UNIV_DEBUG
definition
.
}
call
mtr
.
add_suppression
(
"InnoDB: Warning: cannot find a free slot for an undo log. Do you have too"
);
--
disable_query_log
set
@
old_innodb_trx_rseg_n_slots_debug
=
@@
innodb_trx_rseg_n_slots_debug
;
set
global
innodb_trx_rseg_n_slots_debug
=
32
;
--
enable_query_log
show
variables
like
"max_connections"
;
show
variables
like
"innodb_thread_concurrency"
;
show
variables
like
"innodb_file_per_table"
;
--
disable_warnings
drop
database
if
exists
mysqltest
;
--
enable_warnings
create
database
mysqltest
;
CREATE
TABLE
mysqltest
.
transtable
(
id
int
unsigned
NOT
NULL
PRIMARY
KEY
,
val
int
DEFAULT
0
)
ENGINE
=
InnoDB
;
--
disable_query_log
#
# Insert in 1 transaction which needs over 1 page undo record to avoid the insert_undo cached,
# because the cached insert_undo can be reused at "CREATE TABLE" statement later.
#
START
TRANSACTION
;
let
$c
=
1024
;
while
(
$c
)
{
eval
INSERT
INTO
mysqltest
.
transtable
(
id
)
VALUES
(
$c
);
dec
$c
;
}
COMMIT
;
let
$c
=
32
;
while
(
$c
)
{
# if failed at here, it might be shortage of file descriptors limit.
connect
(
con
$c
,
localhost
,
root
,,);
dec
$c
;
}
--
enable_query_log
select
count
(
*
)
from
information_schema
.
processlist
;
#
# fill the all undo slots
#
--
disable_query_log
let
$c
=
32
;
while
(
$c
)
{
connection
con
$c
;
START
TRANSACTION
;
eval
UPDATE
mysqltest
.
transtable
SET
val
=
1
WHERE
id
=
33
-
$c
;
dec
$c
;
}
--
enable_query_log
connection
default
;
--
error
ER_CANT_CREATE_TABLE
CREATE
TABLE
mysqltest
.
testtable
(
id
int
unsigned
not
null
primary
key
)
ENGINE
=
InnoDB
;
select
count
(
*
)
from
information_schema
.
processlist
;
--
disable_query_log
let
$c
=
32
;
while
(
$c
)
{
connection
con
$c
;
ROLLBACK
;
dec
$c
;
}
--
enable_query_log
connection
default
;
select
count
(
*
)
from
information_schema
.
processlist
;
--
disable_query_log
let
$c
=
32
;
while
(
$c
)
{
disconnect
con
$c
;
dec
$c
;
}
--
enable_query_log
#
# If the isolated .ibd file remained, the drop database should fail.
#
drop
database
mysqltest
;
--
disable_query_log
set
global
innodb_trx_rseg_n_slots_debug
=
@
old_innodb_trx_rseg_n_slots_debug
;
--
enable_query_log
mysql-test/t/init_connect.test
View file @
8aa1e579
...
...
@@ -36,6 +36,14 @@ connection con0;
set
GLOBAL
init_connect
=
"adsfsdfsdfs"
;
connect
(
con5
,
localhost
,
user_1
,,);
connection
con5
;
# BUG#11755281/47032: ERROR 2006 / ERROR 2013 INSTEAD OF PROPER ERROR MESSAGE
# We now throw a proper error message here:
--
replace_regex
/
connection
.*
to
/
connection
to
/
--
error
ER_NEW_ABORTING_CONNECTION
select
@
a
;
# We got disconnected after receiving the above error message; any further
# requests should fail with a notice that no one's listening to us.
# --error CR_SERVER_GONE_ERROR,CR_SERVER_LOST
--
error
2013
,
2006
select
@
a
;
connection
con0
;
...
...
mysql-test/t/mysqldump.test
View file @
8aa1e579
...
...
@@ -2196,6 +2196,118 @@ DROP DATABASE `test-database`;
# Switching back to test database.
USE
`test`
;
--
echo
#
--
echo
# BUG#11760384 : 52792: mysqldump in XML mode does not dump routines.
--
echo
#
CREATE
DATABASE
BUG52792
;
USE
BUG52792
;
CREATE
TABLE
t1
(
c1
INT
,
c2
VARCHAR
(
20
));
CREATE
TABLE
t2
(
c1
INT
);
INSERT
INTO
t1
VALUES
(
1
,
'aaa'
),
(
2
,
'bbb'
),
(
3
,
'ccc'
);
INSERT
INTO
t2
VALUES
(
1
),(
2
),(
3
);
--
echo
# Stored Procedures.
DELIMITER
//;
CREATE
PROCEDURE
simpleproc1
(
OUT
param1
INT
)
BEGIN
SELECT
COUNT
(
*
)
INTO
param1
FROM
t1
;
END
//
DELIMITER
;
//
DELIMITER
//;
CREATE
PROCEDURE
simpleproc2
(
OUT
param1
INT
)
BEGIN
SELECT
COUNT
(
*
)
INTO
param1
FROM
t2
;
END
//
DELIMITER
;
//
--
echo
# Events.
CREATE
EVENT
e1
ON
SCHEDULE
EVERY
1
SECOND
DO
DROP
DATABASE
BUG52792
;
CREATE
EVENT
e2
ON
SCHEDULE
EVERY
1
SECOND
DO
DROP
DATABASE
BUG52792
;
--
echo
# Functions.
CREATE
FUNCTION
`
hello1
` (s CHAR(20))
RETURNS CHAR(50) DETERMINISTIC
RETURN CONCAT('Hello, ' ,s ,'!');
CREATE FUNCTION `
hello2
` (s CHAR(20))
RETURNS CHAR(50) DETERMINISTIC
RETURN CONCAT(']]>, ' , s ,'!');
--echo # Triggers.
DELIMITER |;
CREATE TRIGGER trig1 BEFORE INSERT ON t2
FOR EACH ROW BEGIN
INSERT INTO t2 VALUES(1);
END;
|
DELIMITER ;|
DELIMITER |;
CREATE TRIGGER trig2 AFTER INSERT ON t2
FOR EACH ROW BEGIN
INSERT INTO t2 VALUES(1, ']]>');
INSERT INTO t2 VALUES(2, '<![CDATA]]>');
INSERT INTO t2 VALUES(3, '<![CDATA[');
INSERT INTO t2 VALUES(4, '< > & \ " _');
END;
|
DELIMITER ;|
--echo # Views
CREATE VIEW v1 AS SELECT * FROM t1;
CREATE VIEW v2 AS SELECT * FROM t2;
--echo
--echo # Dumping BUG52792 database in xml format.
--echo
--echo # Running 'replace_regex on timestamp'
--replace_regex /[0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2}/--TIME--/
--exec $MYSQL_DUMP --user=root --compact -R -E --triggers -X BUG52792
--echo
--echo # Dumping BUG52792 database in xml format with comments.
--echo
--echo # Running 'replace_regex on timestamp'
--replace_regex /[0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2}/--TIME--/
--exec $MYSQL_DUMP --comments --user=root -R -E --triggers -X BUG52792
--echo
--echo # Test to check 'Insufficient privileges' error.
--echo
GRANT ALL PRIVILEGES ON BUG52792.* TO user1;
connect (conn_1, localhost, user1, , BUG52792, $MASTER_MYPORT, $MASTER_MYSOCK);
connection conn_1;
--echo # Running 'replace_regex on timestamp'
--replace_regex /[0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2}/--TIME--/
--error 2
--exec $MYSQL_DUMP --user=user1 -R -E --triggers -X BUG52792
connection default;
disconnect conn_1;
DROP USER user1;
DROP DATABASE BUG52792;
--echo # UTF-8
CREATE DATABASE BUG52792;
USE BUG52792;
SET NAMES utf8;
CREATE FUNCTION `
straße
`
(
c1
CHAR
(
20
))
RETURNS
CHAR
(
50
)
DETERMINISTIC
RETURN
CONCAT
(
']]>, '
,
s
,
'!'
);
--
exec
$MYSQL_DUMP
--
character
-
sets
-
dir
=
$CHARSETSDIR
--
skip
-
comments
--
default
-
character
-
set
=
utf8
--
compatible
=
mysql323
-
R
-
X
BUG52792
DROP
DATABASE
BUG52792
;
USE
test
;
--
echo
#
--
echo
# End of 5.1 tests
--
echo
#
...
...
sql/sql_connect.cc
View file @
8aa1e579
...
...
@@ -1342,13 +1342,38 @@ static void prepare_new_connection_state(THD* thd)
execute_init_command
(
thd
,
&
sys_init_connect
,
&
LOCK_sys_init_connect
);
if
(
thd
->
is_error
())
{
thd
->
killed
=
THD
::
KILL_CONNECTION
;
ulong
packet_length
;
NET
*
net
=
&
thd
->
net
;
sql_print_warning
(
ER
(
ER_NEW_ABORTING_CONNECTION
),
thd
->
thread_id
,(
thd
->
db
?
thd
->
db
:
"unconnected"
),
thd
->
thread_id
,
thd
->
db
?
thd
->
db
:
"unconnected"
,
sctx
->
user
?
sctx
->
user
:
"unauthenticated"
,
sctx
->
host_or_ip
,
"init_connect command failed"
);
sql_print_warning
(
"%s"
,
thd
->
main_da
.
message
());
thd
->
lex
->
current_select
=
0
;
my_net_set_read_timeout
(
net
,
thd
->
variables
.
net_wait_timeout
);
thd
->
clear_error
();
net_new_transaction
(
net
);
packet_length
=
my_net_read
(
net
);
/*
If my_net_read() failed, my_error() has been already called,
and the main Diagnostics Area contains an error condition.
*/
if
(
packet_length
!=
packet_error
)
my_error
(
ER_NEW_ABORTING_CONNECTION
,
MYF
(
0
),
thd
->
thread_id
,
thd
->
db
?
thd
->
db
:
"unconnected"
,
sctx
->
user
?
sctx
->
user
:
"unauthenticated"
,
sctx
->
host_or_ip
,
"init_connect command failed"
);
thd
->
server_status
&=
~
SERVER_STATUS_CLEAR_SET
;
net_end_statement
(
thd
);
thd
->
killed
=
THD
::
KILL_CONNECTION
;
return
;
}
thd
->
proc_info
=
0
;
thd
->
set_time
();
thd
->
init_for_queries
();
...
...
storage/federated/ha_federated.cc
View file @
8aa1e579
...
...
@@ -1651,6 +1651,16 @@ int ha_federated::close(void)
mysql_close
(
mysql
);
mysql
=
NULL
;
/*
mysql_close() might return an error if a remote server's gone
for some reason. If that happens while removing a table from
the table cache, the error will be propagated to a client even
if the original query was not issued against the FEDERATED table.
So, don't propagate errors from mysql_close().
*/
if
(
table
->
in_use
)
table
->
in_use
->
clear_error
();
DBUG_RETURN
(
free_share
(
share
));
}
...
...
storage/innobase/buf/buf0buf.c
View file @
8aa1e579
...
...
@@ -634,7 +634,7 @@ buf_pool_init(
/*----------------------------------------*/
}
else
{
buf_pool
->
frame_mem
=
os_mem_alloc_large
(
UNIV_PAGE_SIZE
*
(
n_frames
+
1
),
TRUE
,
FALSE
);
UNIV_PAGE_SIZE
*
(
n_frames
+
1
),
FALSE
);
}
if
(
buf_pool
->
frame_mem
==
NULL
)
{
...
...
@@ -756,12 +756,8 @@ buf_pool_init(
block
=
buf_pool_get_nth_block
(
buf_pool
,
i
);
if
(
block
->
frame
)
{
/* Wipe contents of frame to eliminate a Purify
warning */
UNIV_MEM_INVALID
(
block
->
frame
,
UNIV_PAGE_SIZE
);
#ifdef HAVE_purify
memset
(
block
->
frame
,
'\0'
,
UNIV_PAGE_SIZE
);
#endif
if
(
srv_use_awe
)
{
/* Add to the list of blocks mapped to
frames */
...
...
storage/innobase/handler/ha_innodb.cc
View file @
8aa1e579
...
...
@@ -9060,6 +9060,13 @@ static MYSQL_SYSVAR_UINT(change_buffering_debug, ibuf_debug,
NULL
,
NULL
,
0
,
0
,
1
,
0
);
#endif
/* UNIV_DEBUG || UNIV_IBUF_DEBUG */
#ifdef UNIV_DEBUG
static
MYSQL_SYSVAR_UINT
(
trx_rseg_n_slots_debug
,
trx_rseg_n_slots_debug
,
PLUGIN_VAR_RQCMDARG
,
"Debug flags for InnoDB to limit TRX_RSEG_N_SLOTS for trx_rsegf_undo_find_free()"
,
NULL
,
NULL
,
0
,
0
,
1024
,
0
);
#endif
/* UNIV_DEBUG */
static
struct
st_mysql_sys_var
*
innobase_system_variables
[]
=
{
MYSQL_SYSVAR
(
additional_mem_pool_size
),
MYSQL_SYSVAR
(
autoextend_increment
),
...
...
@@ -9105,6 +9112,9 @@ static struct st_mysql_sys_var* innobase_system_variables[]= {
#if defined UNIV_DEBUG || defined UNIV_IBUF_DEBUG
MYSQL_SYSVAR
(
change_buffering_debug
),
#endif
/* UNIV_DEBUG || UNIV_IBUF_DEBUG */
#ifdef UNIV_DEBUG
MYSQL_SYSVAR
(
trx_rseg_n_slots_debug
),
#endif
/* UNIV_DEBUG */
NULL
};
...
...
storage/innobase/include/mem0mem.ic
View file @
8aa1e579
...
...
@@ -194,10 +194,6 @@ mem_heap_alloc(
caller */
buf = (byte*)buf + MEM_FIELD_HEADER_SIZE;
#endif
#ifdef UNIV_SET_MEM_TO_ZERO
UNIV_MEM_ALLOC(buf, n);
memset(buf, '\0', n);
#endif
UNIV_MEM_ALLOC(buf, n);
return(buf);
...
...
storage/innobase/include/os0proc.h
View file @
8aa1e579
...
...
@@ -104,14 +104,6 @@ ulint
os_proc_get_number
(
void
);
/*====================*/
/********************************************************************
Allocates non-cacheable memory. */
void
*
os_mem_alloc_nocache
(
/*=================*/
/* out: allocated memory */
ulint
n
);
/* in: number of bytes */
/********************************************************************
Allocates large pages memory. */
void
*
...
...
@@ -119,9 +111,6 @@ os_mem_alloc_large(
/*===============*/
/* out: allocated memory */
ulint
n
,
/* in: number of bytes */
ibool
set_to_zero
,
/* in: TRUE if allocated memory
should be set to zero if
UNIV_SET_MEM_TO_ZERO is defined */
ibool
assert_on_error
);
/* in: if TRUE, we crash mysqld if
the memory cannot be allocated */
/********************************************************************
...
...
storage/innobase/include/trx0rseg.ic
View file @
8aa1e579
...
...
@@ -8,6 +8,7 @@ Created 3/26/1996 Heikki Tuuri
#include "srv0srv.h"
#include "mtr0log.h"
#include "trx0sys.h"
/**********************************************************************
Gets a rollback segment header. */
...
...
@@ -113,7 +114,13 @@ trx_rsegf_undo_find_free(
ulint i;
ulint page_no;
for (i = 0; i < TRX_RSEG_N_SLOTS; i++) {
for (i = 0;
#ifndef UNIV_DEBUG
i < TRX_RSEG_N_SLOTS;
#else
i < (trx_rseg_n_slots_debug ? trx_rseg_n_slots_debug : TRX_RSEG_N_SLOTS);
#endif
i++) {
page_no = trx_rsegf_get_nth_undo(rsegf, i, mtr);
...
...
storage/innobase/include/trx0sys.h
View file @
8aa1e579
...
...
@@ -47,6 +47,11 @@ extern ibool trx_doublewrite_buf_is_being_created;
extern
ibool
trx_doublewrite_must_reset_space_ids
;
extern
ibool
trx_sys_multiple_tablespace_format
;
#ifdef UNIV_DEBUG
/* Flag to control TRX_RSEG_N_SLOTS behavior debugging. */
extern
uint
trx_rseg_n_slots_debug
;
#endif
/********************************************************************
Creates the doublewrite buffer to a new InnoDB installation. The header of the
doublewrite buffer is placed on the trx system header page. */
...
...
storage/innobase/include/univ.i
View file @
8aa1e579
...
...
@@ -72,14 +72,6 @@ Microsoft Visual C++ */
/* DEBUG VERSION CONTROL
===================== */
/* The following flag will make InnoDB to initialize
all memory it allocates to zero. It hides Purify
warnings about reading unallocated memory unless
memory is read outside the allocated blocks. */
/*
#define UNIV_INIT_MEM_TO_ZERO
*/
/* Make a non-inline debug version */
#
if
defined
HAVE_VALGRIND
...
...
@@ -112,15 +104,6 @@ operations (very slow); also UNIV_DEBUG must be defined */
#
define
UNIV_BTR_DEBUG
/* check B-tree links */
#
define
UNIV_LIGHT_MEM_DEBUG
/* light memory debugging */
#
ifdef
HAVE_purify
/* The following sets all new allocated memory to zero before use:
this can be used to eliminate unnecessary Purify warnings, but note that
it also masks many bugs Purify could detect. For detailed Purify analysis it
is best to remove the define below and look through the warnings one
by one. */
#
define
UNIV_SET_MEM_TO_ZERO
#
endif
/*
#define UNIV_SQL_DEBUG
#define UNIV_LOG_DEBUG
...
...
storage/innobase/include/ut0mem.h
View file @
8aa1e579
...
...
@@ -30,38 +30,18 @@ ut_memcmp(const void* str1, const void* str2, ulint n);
/**************************************************************************
Allocates memory. Sets it also to zero if UNIV_SET_MEM_TO_ZERO is
defined and set_to_zero is TRUE. */
Allocates memory. */
void
*
ut_malloc_low
(
/*==========*/
/* out, own: allocated memory */
ulint
n
,
/* in: number of bytes to allocate */
ibool
set_to_zero
,
/* in: TRUE if allocated memory
should be set to zero if
UNIV_SET_MEM_TO_ZERO is defined */
ibool
assert_on_error
);
/* in: if TRUE, we crash mysqld if
the memory cannot be allocated */
/**************************************************************************
Allocates memory. Sets it also to zero if UNIV_SET_MEM_TO_ZERO is
defined. */
void
*
ut_malloc
(
/*======*/
/* out, own: allocated memory */
ulint
n
);
/* in: number of bytes to allocate */
/**************************************************************************
Tests if malloc of n bytes would succeed. ut_malloc() asserts if memory runs
out. It cannot be used if we want to return an error message. Prints to
stderr a message if fails. */
ibool
ut_test_malloc
(
/*===========*/
/* out: TRUE if succeeded */
ulint
n
);
/* in: try to allocate this many bytes */
Allocates memory. */
#define ut_malloc(n) ut_malloc_low(n, TRUE)
/**************************************************************************
Frees a memory block allocated with ut_malloc. */
...
...
storage/innobase/include/ut0rnd.ic
View file @
8aa1e579
...
...
@@ -96,7 +96,7 @@ ut_rnd_interval(
rnd = ut_rnd_gen_ulint();
return(low + (rnd % (high - low
+ 1
)));
return(low + (rnd % (high - low)));
}
/*************************************************************
...
...
storage/innobase/mem/mem0pool.c
View file @
8aa1e579
...
...
@@ -196,11 +196,7 @@ mem_pool_create(
pool
=
ut_malloc
(
sizeof
(
mem_pool_t
));
/* We do not set the memory to zero (FALSE) in the pool,
but only when allocated at a higher level in mem0mem.c.
This is to avoid masking useful Purify warnings. */
pool
->
buf
=
ut_malloc_low
(
size
,
FALSE
,
TRUE
);
pool
->
buf
=
ut_malloc_low
(
size
,
TRUE
);
pool
->
size
=
size
;
mutex_create
(
&
pool
->
mutex
,
SYNC_MEM_POOL
);
...
...
storage/innobase/os/os0proc.c
View file @
8aa1e579
...
...
@@ -531,28 +531,6 @@ os_proc_get_number(void)
#endif
}
/********************************************************************
Allocates non-cacheable memory. */
void
*
os_mem_alloc_nocache
(
/*=================*/
/* out: allocated memory */
ulint
n
)
/* in: number of bytes */
{
#ifdef __WIN__
void
*
ptr
;
ptr
=
VirtualAlloc
(
NULL
,
n
,
MEM_COMMIT
,
PAGE_READWRITE
|
PAGE_NOCACHE
);
ut_a
(
ptr
);
return
(
ptr
);
#else
return
(
ut_malloc
(
n
));
#endif
}
/********************************************************************
Allocates large pages memory. */
...
...
@@ -561,9 +539,6 @@ os_mem_alloc_large(
/*===============*/
/* out: allocated memory */
ulint
n
,
/* in: number of bytes */
ibool
set_to_zero
,
/* in: TRUE if allocated memory
should be set to zero if
UNIV_SET_MEM_TO_ZERO is defined */
ibool
assert_on_error
)
/* in: if TRUE, we crash mysqld if
the memory cannot be allocated */
{
...
...
@@ -602,12 +577,6 @@ os_mem_alloc_large(
#endif
if
(
ptr
)
{
if
(
set_to_zero
)
{
#ifdef UNIV_SET_MEM_TO_ZERO
memset
(
ptr
,
'\0'
,
size
);
#endif
}
return
(
ptr
);
}
...
...
@@ -616,7 +585,7 @@ os_mem_alloc_large(
skip:
#endif
/* HAVE_LARGE_PAGES */
return
(
ut_malloc_low
(
n
,
set_to_zero
,
assert_on_error
));
return
(
ut_malloc_low
(
n
,
assert_on_error
));
}
/********************************************************************
...
...
storage/innobase/row/row0mysql.c
View file @
8aa1e579
...
...
@@ -1948,6 +1948,18 @@ row_create_table_for_mysql(
FALSE
);
}
}
else
if
(
err
==
DB_TOO_MANY_CONCURRENT_TRXS
)
{
/* We already have .ibd file here. it should be deleted. */
if
(
table
->
space
&&
!
fil_delete_tablespace
(
table
->
space
))
{
ut_print_timestamp
(
stderr
);
fprintf
(
stderr
,
" InnoDB: Error: not able to"
" delete tablespace %lu of table "
,
(
ulong
)
table
->
space
);
ut_print_name
(
stderr
,
trx
,
TRUE
,
table
->
name
);
fputs
(
"!
\n
"
,
stderr
);
}
}
else
if
(
err
==
DB_DUPLICATE_KEY
)
{
ut_print_timestamp
(
stderr
);
...
...
storage/innobase/trx/trx0sys.c
View file @
8aa1e579
...
...
@@ -54,6 +54,10 @@ InnoDB. */
char
trx_sys_mysql_bin_log_name
[
TRX_SYS_MYSQL_LOG_NAME_LEN
];
ib_longlong
trx_sys_mysql_bin_log_pos
=
-
1
;
#ifdef UNIV_DEBUG
/* Flag to control TRX_RSEG_N_SLOTS behavior debugging. */
uint
trx_rseg_n_slots_debug
=
0
;
#endif
/********************************************************************
Determines if a page number is located inside the doublewrite buffer. */
...
...
storage/innobase/ut/ut0mem.c
View file @
8aa1e579
...
...
@@ -54,17 +54,13 @@ ut_mem_block_list_init(void)
}
/**************************************************************************
Allocates memory. Sets it also to zero if UNIV_SET_MEM_TO_ZERO is
defined and set_to_zero is TRUE. */
Allocates memory. */
void
*
ut_malloc_low
(
/*==========*/
/* out, own: allocated memory */
ulint
n
,
/* in: number of bytes to allocate */
ibool
set_to_zero
,
/* in: TRUE if allocated memory should be
set to zero if UNIV_SET_MEM_TO_ZERO is
defined */
ibool
assert_on_error
)
/* in: if TRUE, we crash mysqld if the
memory cannot be allocated */
{
...
...
@@ -156,12 +152,6 @@ retry:
#endif
}
if
(
set_to_zero
)
{
#ifdef UNIV_SET_MEM_TO_ZERO
memset
(
ret
,
'\0'
,
n
+
sizeof
(
ut_mem_block_t
));
#endif
}
UNIV_MEM_ALLOC
(
ret
,
n
+
sizeof
(
ut_mem_block_t
));
((
ut_mem_block_t
*
)
ret
)
->
size
=
n
+
sizeof
(
ut_mem_block_t
);
...
...
@@ -176,59 +166,6 @@ retry:
return
((
void
*
)((
byte
*
)
ret
+
sizeof
(
ut_mem_block_t
)));
}
/**************************************************************************
Allocates memory. Sets it also to zero if UNIV_SET_MEM_TO_ZERO is
defined. */
void
*
ut_malloc
(
/*======*/
/* out, own: allocated memory */
ulint
n
)
/* in: number of bytes to allocate */
{
return
(
ut_malloc_low
(
n
,
TRUE
,
TRUE
));
}
/**************************************************************************
Tests if malloc of n bytes would succeed. ut_malloc() asserts if memory runs
out. It cannot be used if we want to return an error message. Prints to
stderr a message if fails. */
ibool
ut_test_malloc
(
/*===========*/
/* out: TRUE if succeeded */
ulint
n
)
/* in: try to allocate this many bytes */
{
void
*
ret
;
ret
=
malloc
(
n
);
if
(
ret
==
NULL
)
{
ut_print_timestamp
(
stderr
);
fprintf
(
stderr
,
" InnoDB: Error: cannot allocate"
" %lu bytes of memory for
\n
"
"InnoDB: a BLOB with malloc! Total allocated memory
\n
"
"InnoDB: by InnoDB %lu bytes."
" Operating system errno: %d
\n
"
"InnoDB: Check if you should increase"
" the swap file or
\n
"
"InnoDB: ulimits of your operating system.
\n
"
"InnoDB: On FreeBSD check you have"
" compiled the OS with
\n
"
"InnoDB: a big enough maximum process size.
\n
"
,
(
ulong
)
n
,
(
ulong
)
ut_total_allocated_memory
,
(
int
)
errno
);
return
(
FALSE
);
}
free
(
ret
);
return
(
TRUE
);
}
/**************************************************************************
Frees a memory block allocated with ut_malloc. */
...
...
storage/innodb_plugin/ChangeLog
View file @
8aa1e579
2012-01-04 The InnoDB Team
* row/row0mysql.c:
Fix Bug#12400341: INNODB CAN LEAVE ORPHAN IBD FILES AROUND
2011-12-22 The InnoDB Team
* row/row0sel.c:
Fix Bug#63775 Server crash on handler read next after delete record.
2011-12-21 The InnoDB Team
* include/ut0rnd.ic:
Fix Bug#11866367:FPE WHEN SETTING INNODB_SPIN_WAIT_DELAY
2011-12-13 The InnoDB Team
...
...
storage/innodb_plugin/buf/buf0buf.c
View file @
8aa1e579
...
...
@@ -750,11 +750,8 @@ buf_chunk_init(
for
(
i
=
chunk
->
size
;
i
--
;
)
{
buf_block_init
(
block
,
frame
);
UNIV_MEM_INVALID
(
block
->
frame
,
UNIV_PAGE_SIZE
);
#ifdef HAVE_purify
/* Wipe contents of frame to eliminate a Purify warning */
memset
(
block
->
frame
,
'\0'
,
UNIV_PAGE_SIZE
);
#endif
/* Add the block to the free list */
UT_LIST_ADD_LAST
(
list
,
buf_pool
->
free
,
(
&
block
->
page
));
ut_d
(
block
->
page
.
in_free_list
=
TRUE
);
...
...
storage/innodb_plugin/handler/ha_innodb.cc
View file @
8aa1e579
...
...
@@ -11033,6 +11033,13 @@ static MYSQL_SYSVAR_ULONG(read_ahead_threshold, srv_read_ahead_threshold,
"trigger a readahead."
,
NULL
,
NULL
,
56
,
0
,
64
,
0
);
#ifdef UNIV_DEBUG
static
MYSQL_SYSVAR_UINT
(
trx_rseg_n_slots_debug
,
trx_rseg_n_slots_debug
,
PLUGIN_VAR_RQCMDARG
,
"Debug flags for InnoDB to limit TRX_RSEG_N_SLOTS for trx_rsegf_undo_find_free()"
,
NULL
,
NULL
,
0
,
0
,
1024
,
0
);
#endif
/* UNIV_DEBUG */
static
struct
st_mysql_sys_var
*
innobase_system_variables
[]
=
{
MYSQL_SYSVAR
(
additional_mem_pool_size
),
MYSQL_SYSVAR
(
autoextend_increment
),
...
...
@@ -11094,6 +11101,9 @@ static struct st_mysql_sys_var* innobase_system_variables[]= {
MYSQL_SYSVAR
(
random_read_ahead
),
MYSQL_SYSVAR
(
read_ahead_threshold
),
MYSQL_SYSVAR
(
io_capacity
),
#ifdef UNIV_DEBUG
MYSQL_SYSVAR
(
trx_rseg_n_slots_debug
),
#endif
/* UNIV_DEBUG */
NULL
};
...
...
storage/innodb_plugin/include/mem0mem.ic
View file @
8aa1e579
...
...
@@ -208,10 +208,6 @@ mem_heap_alloc(
caller */
buf = (byte*)buf + MEM_FIELD_HEADER_SIZE;
#endif
#ifdef UNIV_SET_MEM_TO_ZERO
UNIV_MEM_ALLOC(buf, n);
memset(buf, '\0', n);
#endif
UNIV_MEM_ALLOC(buf, n);
return(buf);
...
...
storage/innodb_plugin/include/trx0rseg.ic
View file @
8aa1e579
...
...
@@ -25,6 +25,7 @@ Created 3/26/1996 Heikki Tuuri
#include "srv0srv.h"
#include "mtr0log.h"
#include "trx0sys.h"
/******************************************************************//**
Gets a rollback segment header.
...
...
@@ -131,7 +132,13 @@ trx_rsegf_undo_find_free(
ulint i;
ulint page_no;
for (i = 0; i < TRX_RSEG_N_SLOTS; i++) {
for (i = 0;
#ifndef UNIV_DEBUG
i < TRX_RSEG_N_SLOTS;
#else
i < (trx_rseg_n_slots_debug ? trx_rseg_n_slots_debug : TRX_RSEG_N_SLOTS);
#endif
i++) {
page_no = trx_rsegf_get_nth_undo(rsegf, i, mtr);
...
...
storage/innodb_plugin/include/trx0sys.h
View file @
8aa1e579
...
...
@@ -229,6 +229,12 @@ trx_id_t
trx_sys_get_new_trx_no
(
void
);
/*========================*/
#endif
/* !UNIV_HOTBACKUP */
#ifdef UNIV_DEBUG
/* Flag to control TRX_RSEG_N_SLOTS behavior debugging. */
extern
uint
trx_rseg_n_slots_debug
;
#endif
/*****************************************************************//**
Writes a trx id to an index page. In case that the id size changes in
some future version, this function should be used instead of
...
...
storage/innodb_plugin/include/univ.i
View file @
8aa1e579
...
...
@@ -146,14 +146,6 @@ Sun Studio */
/* DEBUG VERSION CONTROL
===================== */
/* The following flag will make InnoDB to initialize
all memory it allocates to zero. It hides Purify
warnings about reading unallocated memory unless
memory is read outside the allocated blocks. */
/*
#define UNIV_INIT_MEM_TO_ZERO
*/
/* When this macro is defined then additional test functions will be
compiled. These functions live at the end of each relevant source file
and have "test_" prefix. These functions are not called from anywhere in
...
...
@@ -218,15 +210,6 @@ operations (very slow); also UNIV_DEBUG must be defined */
#
define
UNIV_BTR_DEBUG
/* check B-tree links */
#
define
UNIV_LIGHT_MEM_DEBUG
/* light memory debugging */
#
ifdef
HAVE_purify
/* The following sets all new allocated memory to zero before use:
this can be used to eliminate unnecessary Purify warnings, but note that
it also masks many bugs Purify could detect. For detailed Purify analysis it
is best to remove the define below and look through the warnings one
by one. */
#
define
UNIV_SET_MEM_TO_ZERO
#
endif
/*
#define UNIV_SQL_DEBUG
#define UNIV_LOG_DEBUG
...
...
storage/innodb_plugin/include/ut0mem.h
View file @
8aa1e579
...
...
@@ -78,40 +78,19 @@ ut_mem_init(void);
/*=============*/
/**********************************************************************//**
Allocates memory. Sets it also to zero if UNIV_SET_MEM_TO_ZERO is
defined and set_to_zero is TRUE.
Allocates memory.
@return own: allocated memory */
UNIV_INTERN
void
*
ut_malloc_low
(
/*==========*/
ulint
n
,
/*!< in: number of bytes to allocate */
ibool
set_to_zero
,
/*!< in: TRUE if allocated memory
should be set to zero if
UNIV_SET_MEM_TO_ZERO is defined */
ibool
assert_on_error
);
/*!< in: if TRUE, we crash mysqld if
ibool
assert_on_error
)
/*!< in: if TRUE, we crash mysqld if
the memory cannot be allocated */
__attribute__
((
malloc
));
/**********************************************************************//**
Allocates memory. Sets it also to zero if UNIV_SET_MEM_TO_ZERO is
defined.
@return own: allocated memory */
UNIV_INTERN
void
*
ut_malloc
(
/*======*/
ulint
n
);
/*!< in: number of bytes to allocate */
#ifndef UNIV_HOTBACKUP
/**********************************************************************//**
Tests if malloc of n bytes would succeed. ut_malloc() asserts if memory runs
out. It cannot be used if we want to return an error message. Prints to
stderr a message if fails.
@return TRUE if succeeded */
UNIV_INTERN
ibool
ut_test_malloc
(
/*===========*/
ulint
n
);
/*!< in: try to allocate this many bytes */
#endif
/* !UNIV_HOTBACKUP */
Allocates memory. */
#define ut_malloc(n) ut_malloc_low(n, TRUE)
/**********************************************************************//**
Frees a memory block allocated with ut_malloc. Freeing a NULL pointer is
a nop. */
...
...
storage/innodb_plugin/include/ut0rnd.ic
View file @
8aa1e579
...
...
@@ -114,7 +114,7 @@ ut_rnd_interval(
rnd = ut_rnd_gen_ulint();
return(low + (rnd % (high - low
+ 1
)));
return(low + (rnd % (high - low)));
}
/*********************************************************//**
...
...
storage/innodb_plugin/mem/mem0pool.c
View file @
8aa1e579
...
...
@@ -223,11 +223,7 @@ mem_pool_create(
pool
=
ut_malloc
(
sizeof
(
mem_pool_t
));
/* We do not set the memory to zero (FALSE) in the pool,
but only when allocated at a higher level in mem0mem.c.
This is to avoid masking useful Purify warnings. */
pool
->
buf
=
ut_malloc_low
(
size
,
FALSE
,
TRUE
);
pool
->
buf
=
ut_malloc_low
(
size
,
TRUE
);
pool
->
size
=
size
;
mutex_create
(
&
pool
->
mutex
,
SYNC_MEM_POOL
);
...
...
storage/innodb_plugin/os/os0proc.c
View file @
8aa1e579
...
...
@@ -111,9 +111,6 @@ os_mem_alloc_large(
os_fast_mutex_lock
(
&
ut_list_mutex
);
ut_total_allocated_memory
+=
size
;
os_fast_mutex_unlock
(
&
ut_list_mutex
);
# ifdef UNIV_SET_MEM_TO_ZERO
memset
(
ptr
,
'\0'
,
size
);
# endif
UNIV_MEM_ALLOC
(
ptr
,
size
);
return
(
ptr
);
}
...
...
storage/innodb_plugin/row/row0mysql.c
View file @
8aa1e579
...
...
@@ -1900,6 +1900,20 @@ err_exit:
}
break
;
case
DB_TOO_MANY_CONCURRENT_TRXS
:
/* We already have .ibd file here. it should be deleted. */
if
(
table
->
space
&&
!
fil_delete_tablespace
(
table
->
space
))
{
ut_print_timestamp
(
stderr
);
fprintf
(
stderr
,
" InnoDB: Error: not able to"
" delete tablespace %lu of table "
,
(
ulong
)
table
->
space
);
ut_print_name
(
stderr
,
trx
,
TRUE
,
table
->
name
);
fputs
(
"!
\n
"
,
stderr
);
}
/* fall through */
case
DB_DUPLICATE_KEY
:
default:
/* We may also get err == DB_ERROR if the .ibd file for the
...
...
storage/innodb_plugin/trx/trx0sys.c
View file @
8aa1e579
...
...
@@ -127,6 +127,11 @@ static const char* file_format_name_map[] = {
static
const
ulint
FILE_FORMAT_NAME_N
=
sizeof
(
file_format_name_map
)
/
sizeof
(
file_format_name_map
[
0
]);
#ifdef UNIV_DEBUG
/* Flag to control TRX_RSEG_N_SLOTS behavior debugging. */
uint
trx_rseg_n_slots_debug
=
0
;
#endif
#ifndef UNIV_HOTBACKUP
/** This is used to track the maximum file format id known to InnoDB. It's
updated via SET GLOBAL innodb_file_format_check = 'x' or when we open
...
...
storage/innodb_plugin/ut/ut0mem.c
View file @
8aa1e579
...
...
@@ -84,17 +84,13 @@ ut_mem_init(void)
#endif
/* !UNIV_HOTBACKUP */
/**********************************************************************//**
Allocates memory. Sets it also to zero if UNIV_SET_MEM_TO_ZERO is
defined and set_to_zero is TRUE.
Allocates memory.
@return own: allocated memory */
UNIV_INTERN
void
*
ut_malloc_low
(
/*==========*/
ulint
n
,
/*!< in: number of bytes to allocate */
ibool
set_to_zero
,
/*!< in: TRUE if allocated memory should be
set to zero if UNIV_SET_MEM_TO_ZERO is
defined */
ibool
assert_on_error
)
/*!< in: if TRUE, we crash mysqld if the
memory cannot be allocated */
{
...
...
@@ -106,12 +102,6 @@ ut_malloc_low(
ret
=
malloc
(
n
);
ut_a
(
ret
||
!
assert_on_error
);
#ifdef UNIV_SET_MEM_TO_ZERO
if
(
set_to_zero
)
{
memset
(
ret
,
'\0'
,
n
);
UNIV_MEM_ALLOC
(
ret
,
n
);
}
#endif
return
(
ret
);
}
...
...
@@ -199,12 +189,6 @@ retry:
#endif
}
if
(
set_to_zero
)
{
#ifdef UNIV_SET_MEM_TO_ZERO
memset
(
ret
,
'\0'
,
n
+
sizeof
(
ut_mem_block_t
));
#endif
}
UNIV_MEM_ALLOC
(
ret
,
n
+
sizeof
(
ut_mem_block_t
));
((
ut_mem_block_t
*
)
ret
)
->
size
=
n
+
sizeof
(
ut_mem_block_t
);
...
...
@@ -221,74 +205,10 @@ retry:
void
*
ret
=
malloc
(
n
);
ut_a
(
ret
||
!
assert_on_error
);
# ifdef UNIV_SET_MEM_TO_ZERO
if
(
set_to_zero
)
{
memset
(
ret
,
'\0'
,
n
);
}
# endif
return
(
ret
);
#endif
/* !UNIV_HOTBACKUP */
}
/**********************************************************************//**
Allocates memory. Sets it also to zero if UNIV_SET_MEM_TO_ZERO is
defined.
@return own: allocated memory */
UNIV_INTERN
void
*
ut_malloc
(
/*======*/
ulint
n
)
/*!< in: number of bytes to allocate */
{
#ifndef UNIV_HOTBACKUP
return
(
ut_malloc_low
(
n
,
TRUE
,
TRUE
));
#else
/* !UNIV_HOTBACKUP */
return
(
malloc
(
n
));
#endif
/* !UNIV_HOTBACKUP */
}
#ifndef UNIV_HOTBACKUP
/**********************************************************************//**
Tests if malloc of n bytes would succeed. ut_malloc() asserts if memory runs
out. It cannot be used if we want to return an error message. Prints to
stderr a message if fails.
@return TRUE if succeeded */
UNIV_INTERN
ibool
ut_test_malloc
(
/*===========*/
ulint
n
)
/*!< in: try to allocate this many bytes */
{
void
*
ret
;
ret
=
malloc
(
n
);
if
(
ret
==
NULL
)
{
ut_print_timestamp
(
stderr
);
fprintf
(
stderr
,
" InnoDB: Error: cannot allocate"
" %lu bytes of memory for
\n
"
"InnoDB: a BLOB with malloc! Total allocated memory
\n
"
"InnoDB: by InnoDB %lu bytes."
" Operating system errno: %d
\n
"
"InnoDB: Check if you should increase"
" the swap file or
\n
"
"InnoDB: ulimits of your operating system.
\n
"
"InnoDB: On FreeBSD check you have"
" compiled the OS with
\n
"
"InnoDB: a big enough maximum process size.
\n
"
,
(
ulong
)
n
,
(
ulong
)
ut_total_allocated_memory
,
(
int
)
errno
);
return
(
FALSE
);
}
free
(
ret
);
return
(
TRUE
);
}
#endif
/* !UNIV_HOTBACKUP */
/**********************************************************************//**
Frees a memory block allocated with ut_malloc. Freeing a NULL pointer is
a nop. */
...
...
unittest/mysys/bitmap-t.c
View file @
8aa1e579
...
...
@@ -429,7 +429,7 @@ my_bool test_intersect(MY_BITMAP *map, uint bitsize)
{
uint
bitsize2
=
1
+
get_rand_bit
(
MAX_TESTED_BITMAP_SIZE
-
1
);
MY_BITMAP
map2
;
uint32
map2buf
[
bitsize2
];
uint32
map2buf
[
MAX_TESTED_BITMAP_SIZE
];
uint
i
,
test_bit1
,
test_bit2
,
test_bit3
;
if
(
bitmap_init
(
&
map2
,
map2buf
,
bitsize2
,
FALSE
))
{
...
...
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