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
222e128b
Commit
222e128b
authored
Feb 21, 2007
by
monty@mysql.com/narttu.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed unsafe define of uint4korr()
Fixed that --extern works with mysql-test-run.pl Small trivial cleanups
parent
120e3f5e
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
105 additions
and
84 deletions
+105
-84
include/my_global.h
include/my_global.h
+1
-1
mysql-test/lib/mtr_report.pl
mysql-test/lib/mtr_report.pl
+4
-2
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+97
-78
mysql-test/t/ndb_lock.test
mysql-test/t/ndb_lock.test
+1
-1
sql/sql_prepare.cc
sql/sql_prepare.cc
+2
-2
No files found.
include/my_global.h
View file @
222e128b
...
@@ -1078,7 +1078,7 @@ typedef char bool; /* Ordinary boolean values 0 1 */
...
@@ -1078,7 +1078,7 @@ typedef char bool; /* Ordinary boolean values 0 1 */
*/
*/
#define uint3korr(A) (long) (*((unsigned int *) (A)) & 0xFFFFFF)
#define uint3korr(A) (long) (*((unsigned int *) (A)) & 0xFFFFFF)
#endif
#endif
#define uint4korr(A) (*((u
nsigned long
*) (A)))
#define uint4korr(A) (*((u
int32
*) (A)))
#define uint5korr(A) ((ulonglong)(((uint32) ((uchar) (A)[0])) +\
#define uint5korr(A) ((ulonglong)(((uint32) ((uchar) (A)[0])) +\
(((uint32) ((uchar) (A)[1])) << 8) +\
(((uint32) ((uchar) (A)[1])) << 8) +\
(((uint32) ((uchar) (A)[2])) << 16) +\
(((uint32) ((uchar) (A)[2])) << 16) +\
...
...
mysql-test/lib/mtr_report.pl
View file @
222e128b
...
@@ -236,8 +236,10 @@ sub mtr_report_stats ($) {
...
@@ -236,8 +236,10 @@ sub mtr_report_stats ($) {
"
the documentation at
\n
",
"
the documentation at
\n
",
"
http://www.mysql.com/doc/en/MySQL_test_suite.html
\n
";
"
http://www.mysql.com/doc/en/MySQL_test_suite.html
\n
";
}
}
print
if
(
!
$::opt_extern
)
"
The servers were restarted
$tot_restarts
times
\n
";
{
print
"
The servers where restarted
$tot_restarts
times
\n
";
}
if
(
$::opt_timer
)
if
(
$::opt_timer
)
{
{
...
...
mysql-test/mysql-test-run.pl
View file @
222e128b
...
@@ -696,6 +696,8 @@ sub command_line_setup () {
...
@@ -696,6 +696,8 @@ sub command_line_setup () {
"
$glob_basedir
/client
",
"
$glob_basedir
/client
",
"
$glob_basedir
/bin
");
"
$glob_basedir
/bin
");
if
(
!
$opt_extern
)
{
$exe_mysqld
=
mtr_exe_exists
(
vs_config_dirs
('
sql
',
'
mysqld
'),
$exe_mysqld
=
mtr_exe_exists
(
vs_config_dirs
('
sql
',
'
mysqld
'),
"
$glob_basedir
/sql/mysqld
",
"
$glob_basedir
/sql/mysqld
",
"
$path_client_bindir
/mysqld-max-nt
",
"
$path_client_bindir
/mysqld-max-nt
",
...
@@ -710,6 +712,14 @@ sub command_line_setup () {
...
@@ -710,6 +712,14 @@ sub command_line_setup () {
# Use the mysqld found above to find out what features are available
# Use the mysqld found above to find out what features are available
collect_mysqld_features
();
collect_mysqld_features
();
}
else
{
$mysqld_variables
{'
port
'}
=
3306
;
$mysqld_variables
{'
master-port
'}
=
3306
;
$opt_skip_ndbcluster
=
1
;
$opt_skip_im
=
1
;
}
if
(
$opt_comment
)
if
(
$opt_comment
)
{
{
...
@@ -746,7 +756,7 @@ sub command_line_setup () {
...
@@ -746,7 +756,7 @@ sub command_line_setup () {
# --------------------------------------------------------------------------
# --------------------------------------------------------------------------
# NOTE if the default binlog format is changed, this has to be changed
# NOTE if the default binlog format is changed, this has to be changed
$used_binlog_format
=
"
stmt
";
$used_binlog_format
=
"
stmt
";
if
(
$mysql_version_id
>=
50100
)
if
(
!
$opt_extern
&&
$mysql_version_id
>=
50100
)
{
{
$used_binlog_format
=
"
mixed
";
# Default value for binlog format
$used_binlog_format
=
"
mixed
";
# Default value for binlog format
...
@@ -832,19 +842,20 @@ sub command_line_setup () {
...
@@ -832,19 +842,20 @@ sub command_line_setup () {
# --------------------------------------------------------------------------
# --------------------------------------------------------------------------
# Check im suport
# Check im suport
# --------------------------------------------------------------------------
# --------------------------------------------------------------------------
if
(
$mysql_version_id
<
50000
)
if
(
!
$opt_extern
)
{
{
if
(
$mysql_version_id
<
50000
)
{
# Instance manager is not supported until 5.0
# Instance manager is not supported until 5.0
$opt_skip_im
=
1
;
$opt_skip_im
=
1
;
}
}
if
(
$glob_win32
)
if
(
$glob_win32
)
{
{
mtr_report
("
Disable Instance manager - not supported on Windows
");
mtr_report
("
Disable Instance manager - not supported on Windows
");
$opt_skip_im
=
1
;
$opt_skip_im
=
1
;
}
}
}
# --------------------------------------------------------------------------
# --------------------------------------------------------------------------
# Record flag
# Record flag
# --------------------------------------------------------------------------
# --------------------------------------------------------------------------
...
@@ -1208,7 +1219,7 @@ sub command_line_setup () {
...
@@ -1208,7 +1219,7 @@ sub command_line_setup () {
$opt_skip_rpl
=
1
;
$opt_skip_rpl
=
1
;
# Setup master->[0] with the settings for the extern server
# Setup master->[0] with the settings for the extern server
$master
->
[
0
]
->
{'
path_sock
'}
=
$opt_socket
if
$opt_socket
;
$master
->
[
0
]
->
{'
path_sock
'}
=
$opt_socket
?
$opt_socket
:
"
/tmp/mysql.sock
"
;
mtr_report
("
Using extern server at '
$master
->[0]->{path_sock}'
");
mtr_report
("
Using extern server at '
$master
->[0]->{path_sock}'
");
}
}
else
else
...
@@ -1474,21 +1485,19 @@ sub executable_setup () {
...
@@ -1474,21 +1485,19 @@ sub executable_setup () {
$exe_mysqlbinlog
=
mtr_exe_exists
("
$path_client_bindir
/mysqlbinlog
");
$exe_mysqlbinlog
=
mtr_exe_exists
("
$path_client_bindir
/mysqlbinlog
");
$exe_mysqladmin
=
mtr_exe_exists
("
$path_client_bindir
/mysqladmin
");
$exe_mysqladmin
=
mtr_exe_exists
("
$path_client_bindir
/mysqladmin
");
$exe_mysql
=
mtr_exe_exists
("
$path_client_bindir
/mysql
");
$exe_mysql
=
mtr_exe_exists
("
$path_client_bindir
/mysql
");
if
(
$mysql_version_id
>=
50100
)
if
(
!
$opt_extern
)
{
{
if
(
$mysql_version_id
>=
50100
)
{
$exe_mysqlslap
=
mtr_exe_exists
("
$path_client_bindir
/mysqlslap
");
$exe_mysqlslap
=
mtr_exe_exists
("
$path_client_bindir
/mysqlslap
");
}
}
if
(
$mysql_version_id
>=
50000
and
!
$glob_use_embedded_server
)
if
(
$mysql_version_id
>=
50000
and
!
$glob_use_embedded_server
)
{
{
$exe_mysql_upgrade
=
mtr_exe_exists
("
$path_client_bindir
/mysql_upgrade
")
$exe_mysql_upgrade
=
mtr_exe_exists
("
$path_client_bindir
/mysql_upgrade
")
}
}
else
{
else
{
$exe_mysql_upgrade
=
"";
$exe_mysql_upgrade
=
"";
}
}
if
(
!
$glob_win32
)
if
(
!
$glob_win32
)
{
{
# Look for mysql_fix_system_table script
# Look for mysql_fix_system_table script
$exe_mysql_fix_system_tables
=
$exe_mysql_fix_system_tables
=
mtr_script_exists
("
$glob_basedir
/scripts/mysql_fix_privilege_tables
",
mtr_script_exists
("
$glob_basedir
/scripts/mysql_fix_privilege_tables
",
...
@@ -1500,20 +1509,17 @@ sub executable_setup () {
...
@@ -1500,20 +1509,17 @@ sub executable_setup () {
mtr_file_exists
("
$glob_basedir
/scripts/mysql_fix_privilege_tables.sql
",
mtr_file_exists
("
$glob_basedir
/scripts/mysql_fix_privilege_tables.sql
",
"
$glob_basedir
/share/mysql_fix_privilege_tables.sql
");
"
$glob_basedir
/share/mysql_fix_privilege_tables.sql
");
if
(
!
$opt_skip_ndbcluster
and
executable_setup_ndb
())
if
(
!
$opt_skip_ndbcluster
and
executable_setup_ndb
())
{
{
mtr_warning
("
Could not find all required ndb binaries,
"
.
mtr_warning
("
Could not find all required ndb binaries,
"
.
"
all ndb tests will fail, use --skip-ndbcluster to
"
.
"
all ndb tests will fail, use --skip-ndbcluster to
"
.
"
skip testing it.
");
"
skip testing it.
");
foreach
my
$cluster
(
@
{
$clusters
})
foreach
my
$cluster
(
@
{
$clusters
})
{
{
$cluster
->
{"
executable_setup_failed
"}
=
1
;
$cluster
->
{"
executable_setup_failed
"}
=
1
;
}
}
}
}
if
(
!
$opt_skip_im
and
executable_setup_im
())
if
(
!
$opt_skip_im
and
executable_setup_im
())
{
{
mtr_warning
("
Could not find all required instance manager binaries,
"
.
mtr_warning
("
Could not find all required instance manager binaries,
"
.
"
all im tests will fail, use --skip-im to
"
.
"
all im tests will fail, use --skip-im to
"
.
"
continue without instance manager
");
"
continue without instance manager
");
...
@@ -1525,6 +1531,7 @@ sub executable_setup () {
...
@@ -1525,6 +1531,7 @@ sub executable_setup () {
mtr_file_exists
(
vs_config_dirs
('
sql
',
'
udf_example.dll
'),
mtr_file_exists
(
vs_config_dirs
('
sql
',
'
udf_example.dll
'),
"
$glob_basedir
/sql/.libs/udf_example.so
",);
"
$glob_basedir
/sql/.libs/udf_example.so
",);
}
# Look for mysqltest executable
# Look for mysqltest executable
if
(
$glob_use_embedded_server
)
if
(
$glob_use_embedded_server
)
{
{
...
@@ -1590,7 +1597,7 @@ sub mysql_client_test_arguments()
...
@@ -1590,7 +1597,7 @@ sub mysql_client_test_arguments()
mtr_add_arg
(
$args
,
"
--port=
$master
->[0]->{'port'}
");
mtr_add_arg
(
$args
,
"
--port=
$master
->[0]->{'port'}
");
mtr_add_arg
(
$args
,
"
--socket=
$master
->[0]->{'path_sock'}
");
mtr_add_arg
(
$args
,
"
--socket=
$master
->[0]->{'path_sock'}
");
if
(
$mysql_version_id
>=
50000
)
if
(
$
opt_extern
||
$
mysql_version_id
>=
50000
)
{
{
mtr_add_arg
(
$args
,
"
--vardir=
$opt_vardir
")
mtr_add_arg
(
$args
,
"
--vardir=
$opt_vardir
")
}
}
...
@@ -1701,7 +1708,7 @@ sub environment_setup () {
...
@@ -1701,7 +1708,7 @@ sub environment_setup () {
}
}
$ENV
{'
LD_LIBRARY_PATH
'}
=
join
("
:
",
@ld_library_paths
,
$ENV
{'
LD_LIBRARY_PATH
'}
=
join
("
:
",
@ld_library_paths
,
$ENV
{'
LD_LIBRARY_PATH
S
'}
?
$ENV
{'
LD_LIBRARY_PATH
'}
?
split
('
:
',
$ENV
{'
LD_LIBRARY_PATH
'})
:
());
split
('
:
',
$ENV
{'
LD_LIBRARY_PATH
'})
:
());
mtr_debug
("
LD_LIBRARY_PATH:
$ENV
{'LD_LIBRARY_PATH'}
");
mtr_debug
("
LD_LIBRARY_PATH:
$ENV
{'LD_LIBRARY_PATH'}
");
...
@@ -1882,7 +1889,7 @@ sub environment_setup () {
...
@@ -1882,7 +1889,7 @@ sub environment_setup () {
my
$cmdline_mysqlbinlog
=
my
$cmdline_mysqlbinlog
=
"
$exe_mysqlbinlog
"
.
"
$exe_mysqlbinlog
"
.
"
--no-defaults --local-load=
$opt_tmpdir
";
"
--no-defaults --local-load=
$opt_tmpdir
";
if
(
$mysql_version_id
>=
50000
)
if
(
!
$opt_extern
&&
$mysql_version_id
>=
50000
)
{
{
$cmdline_mysqlbinlog
.=
"
--character-sets-dir=
$path_charsetsdir
";
$cmdline_mysqlbinlog
.=
"
--character-sets-dir=
$path_charsetsdir
";
}
}
...
@@ -1913,7 +1920,7 @@ sub environment_setup () {
...
@@ -1913,7 +1920,7 @@ sub environment_setup () {
# ----------------------------------------------------
# ----------------------------------------------------
# Setup env so childs can execute mysql_upgrade
# Setup env so childs can execute mysql_upgrade
# ----------------------------------------------------
# ----------------------------------------------------
if
(
$mysql_version_id
>=
50000
)
if
(
!
$opt_extern
&&
$mysql_version_id
>=
50000
)
{
{
$ENV
{'
MYSQL_UPGRADE
'}
=
mysql_upgrade_arguments
();
$ENV
{'
MYSQL_UPGRADE
'}
=
mysql_upgrade_arguments
();
}
}
...
@@ -1921,7 +1928,7 @@ sub environment_setup () {
...
@@ -1921,7 +1928,7 @@ sub environment_setup () {
# ----------------------------------------------------
# ----------------------------------------------------
# Setup env so childs can execute mysql_fix_system_tables
# Setup env so childs can execute mysql_fix_system_tables
# ----------------------------------------------------
# ----------------------------------------------------
if
(
!
$glob_win32
)
if
(
!
$opt_extern
&&
!
$glob_win32
)
{
{
my
$cmdline_mysql_fix_system_tables
=
my
$cmdline_mysql_fix_system_tables
=
"
$exe_mysql_fix_system_tables
--no-defaults --host=localhost
"
.
"
$exe_mysql_fix_system_tables
--no-defaults --host=localhost
"
.
...
@@ -1931,7 +1938,10 @@ sub environment_setup () {
...
@@ -1931,7 +1938,10 @@ sub environment_setup () {
"
--socket=
$master
->[0]->{'path_sock'}
";
"
--socket=
$master
->[0]->{'path_sock'}
";
$ENV
{'
MYSQL_FIX_SYSTEM_TABLES
'}
=
$cmdline_mysql_fix_system_tables
;
$ENV
{'
MYSQL_FIX_SYSTEM_TABLES
'}
=
$cmdline_mysql_fix_system_tables
;
}
}
if
(
!
$opt_extern
)
{
$ENV
{'
MYSQL_FIX_PRIVILEGE_TABLES
'}
=
$file_mysql_fix_privilege_tables
;
$ENV
{'
MYSQL_FIX_PRIVILEGE_TABLES
'}
=
$file_mysql_fix_privilege_tables
;
}
# ----------------------------------------------------
# ----------------------------------------------------
# Setup env so childs can execute my_print_defaults
# Setup env so childs can execute my_print_defaults
...
@@ -2234,8 +2244,11 @@ sub check_ssl_support ($) {
...
@@ -2234,8 +2244,11 @@ sub check_ssl_support ($) {
my
$mysqld_variables
=
shift
;
my
$mysqld_variables
=
shift
;
if
(
$opt_skip_ssl
||
$opt_extern
)
if
(
$opt_skip_ssl
||
$opt_extern
)
{
if
(
!
$opt_extern
)
{
{
mtr_report
("
Skipping SSL
");
mtr_report
("
Skipping SSL
");
}
$opt_ssl_supported
=
0
;
$opt_ssl_supported
=
0
;
$opt_ssl
=
0
;
$opt_ssl
=
0
;
return
;
return
;
...
@@ -2310,9 +2323,12 @@ sub vs_config_dirs ($$) {
...
@@ -2310,9 +2323,12 @@ sub vs_config_dirs ($$) {
sub
check_ndbcluster_support
($)
{
sub
check_ndbcluster_support
($)
{
my
$mysqld_variables
=
shift
;
my
$mysqld_variables
=
shift
;
if
(
$opt_skip_ndbcluster
)
if
(
$opt_skip_ndbcluster
||
$opt_extern
)
{
if
(
!
$opt_extern
)
{
{
mtr_report
("
Skipping ndbcluster
");
mtr_report
("
Skipping ndbcluster
");
}
$opt_skip_ndbcluster_slave
=
1
;
$opt_skip_ndbcluster_slave
=
1
;
return
;
return
;
}
}
...
@@ -2727,10 +2743,13 @@ sub initialize_servers () {
...
@@ -2727,10 +2743,13 @@ sub initialize_servers () {
setup_vardir
();
setup_vardir
();
}
}
else
else
{
if
(
$opt_verbose
)
{
{
mtr_report
("
No need to create '
$opt_vardir
' it already exists
");
mtr_report
("
No need to create '
$opt_vardir
' it already exists
");
}
}
}
}
}
else
else
{
{
kill_running_servers
();
kill_running_servers
();
...
@@ -3125,18 +3144,18 @@ sub do_before_run_mysqltest($)
...
@@ -3125,18 +3144,18 @@ sub do_before_run_mysqltest($)
unlink
("
$result_dir
/
$tname
.log
");
unlink
("
$result_dir
/
$tname
.log
");
unlink
("
$result_dir
/
$tname
.warnings
");
unlink
("
$result_dir
/
$tname
.warnings
");
if
(
$mysql_version_id
<
50000
)
if
(
!
$opt_extern
)
{
{
if
(
$mysql_version_id
<
50000
)
{
# Set environment variable NDB_STATUS_OK to 1
# Set environment variable NDB_STATUS_OK to 1
# if script decided to run mysqltest cluster _is_ installed ok
# if script decided to run mysqltest cluster _is_ installed ok
$ENV
{'
NDB_STATUS_OK
'}
=
"
1
";
$ENV
{'
NDB_STATUS_OK
'}
=
"
1
";
}
}
elsif
(
$mysql_version_id
<
50100
)
{
elsif
(
$mysql_version_id
<
50100
)
{
# Set environment variable NDB_STATUS_OK to YES
# Set environment variable NDB_STATUS_OK to YES
# if script decided to run mysqltest cluster _is_ installed ok
# if script decided to run mysqltest cluster _is_ installed ok
$ENV
{'
NDB_STATUS_OK
'}
=
"
YES
";
$ENV
{'
NDB_STATUS_OK
'}
=
"
YES
";
}
}
}
}
}
sub
do_after_run_mysqltest
($)
sub
do_after_run_mysqltest
($)
...
@@ -4903,10 +4922,10 @@ sub usage ($) {
...
@@ -4903,10 +4922,10 @@ sub usage ($) {
if
(
$message
)
if
(
$message
)
{
{
print
STDERR
"
$message
\n
";
print
STDERR
"
$message
\n
";
}
}
print
STDERR
<<HERE;
print
<<HERE;
$0 [ OPTIONS ] [ TESTCASE ]
$0 [ OPTIONS ] [ TESTCASE ]
...
...
mysql-test/t/ndb_lock.test
View file @
222e128b
...
@@ -149,7 +149,7 @@ begin;
...
@@ -149,7 +149,7 @@ begin;
# Have to check with pk access here since scans take locks on
# Have to check with pk access here since scans take locks on
# all rows and then release them in chunks
# all rows and then release them in chunks
select
*
from
t1
where
x
=
1
for
update
;
select
*
from
t1
where
x
=
1
for
update
;
--
error
1205
--
error
1
105
,
1
205
select
*
from
t1
where
x
=
2
for
update
;
select
*
from
t1
where
x
=
2
for
update
;
rollback
;
rollback
;
...
...
sql/sql_prepare.cc
View file @
222e128b
...
@@ -2203,11 +2203,11 @@ void mysql_stmt_execute(THD *thd, char *packet_arg, uint packet_length)
...
@@ -2203,11 +2203,11 @@ void mysql_stmt_execute(THD *thd, char *packet_arg, uint packet_length)
{
{
uchar
*
packet
=
(
uchar
*
)
packet_arg
;
// GCC 4.0.1 workaround
uchar
*
packet
=
(
uchar
*
)
packet_arg
;
// GCC 4.0.1 workaround
ulong
stmt_id
=
uint4korr
(
packet
);
ulong
stmt_id
=
uint4korr
(
packet
);
ulong
flags
=
(
ulong
)
((
uchar
)
packet
[
4
])
;
ulong
flags
=
(
ulong
)
packet
[
4
]
;
/* Query text for binary, general or slow log, if any of them is open */
/* Query text for binary, general or slow log, if any of them is open */
String
expanded_query
;
String
expanded_query
;
#ifndef EMBEDDED_LIBRARY
#ifndef EMBEDDED_LIBRARY
uchar
*
packet_end
=
(
uchar
*
)
packet
+
packet_length
-
1
;
uchar
*
packet_end
=
packet
+
packet_length
-
1
;
#endif
#endif
Prepared_statement
*
stmt
;
Prepared_statement
*
stmt
;
bool
error
;
bool
error
;
...
...
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