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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
fb7d5881
Commit
fb7d5881
authored
Mar 09, 2023
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
main.bootstrap test cleanup
parent
e62947f3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
89 additions
and
55 deletions
+89
-55
mysql-test/main/bootstrap.result
mysql-test/main/bootstrap.result
+39
-3
mysql-test/main/bootstrap.test
mysql-test/main/bootstrap.test
+50
-52
No files found.
mysql-test/main/bootstrap.result
View file @
fb7d5881
drop table if exists t1;
#
# test mysqld in bootstrap mode
#
#
# Check that --bootstrap reads from stdin
#
drop table t1;
#
# Check that --bootstrap of file with SQL error returns error
#
drop table t1;
ERROR 42S02: Unknown table 'test.t1'
#
# Bootstrap with a large thd->net.max_packet
#
set @my_max_allowed_packet= @@max_allowed_packet;
set @@global.max_allowed_packet= greatest(1073741824, @@max_allowed_packet);
set @max_allowed_packed=@@global.max_allowed_packet;
set global max_allowed_packet=@my_max_allowed_packet;
drop table t1;
End of 5.1 tests
#
# End of 5.1 tests
#
#
# Bug #11766306: 59393: HAVE_INNODB=YES WHEN MYSQLD
# STARTED WITH --SKIP-INNODB
...
...
@@ -15,7 +28,21 @@ End of 5.1 tests
SELECT 'bug' as '' FROM INFORMATION_SCHEMA.ENGINES WHERE engine='innodb'
and SUPPORT='YES';
End of 5.5 tests
#
# MDEV-13063 Server crashes in intern_plugin_lock or assertion `plugin_ptr->ref_count == 1' fails in plugin_init
#
#
# MDEV-19349 mysql_install_db: segfault at tmp_file_prefix check
#
#
# End of 5.5 tests
#
#
# Check that --bootstrap can install and uninstall plugins
#
#
# Check that installed plugins are *not* automatically loaded in --bootstrap
#
flush tables;
show create table t1;
Table Create Table
...
...
@@ -27,3 +54,12 @@ select * from mysql.plugin;
name dl
EXAMPLE ha_example.so
truncate table mysql.plugin;
#
# MDEV-9969 mysql_install_db error processing ignore_db_dirs.
#
#
# MDEV-13397 MariaDB upgrade fail when using default_time_zone
#
#
# End of 10.3 tests
#
mysql-test/main/bootstrap.test
View file @
fb7d5881
#
# test mysqld in bootstrap mode
#
--
disable_warnings
drop
table
if
exists
t1
;
--
enable_warnings
--
echo
#
--
echo
# test mysqld in bootstrap mode
--
echo
#
--
source
include
/
not_windows_embedded
.
inc
--
source
include
/
have_example_plugin
.
inc
--
let
test_bootstrap
=
$MYSQLTEST_VARDIR
/
tmp
/
test_bootstrap
.
sql
--
write_file
$test_bootstrap
use
test
;
EOF
# Add the datadir to the bootstrap command
let
$MYSQLD_DATADIR
=
`select @@datadir`
;
let
$MYSQLD_BOOTSTRAP_CMD
=
$MYSQLD_BOOTSTRAP_CMD
--
datadir
=
$MYSQLD_DATADIR
--
tmpdir
=
$MYSQL_TMP_DIR
--
default
-
storage
-
engine
=
MyISAM
--
loose
-
skip
-
innodb
--
plugin
-
maturity
=
unknown
;
#
# Check that --bootstrap reads from stdin
#
--
echo
#
--
echo
# Check that --bootstrap reads from stdin
--
echo
#
--
write_file
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap_test
.
sql
use
test
;
CREATE
TABLE
t1
(
a
int
);
...
...
@@ -18,9 +22,9 @@ EOF
--
exec
$MYSQLD_BOOTSTRAP_CMD
<
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap_test
.
sql
>>
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap
.
log
2
>&
1
drop
table
t1
;
remove_file
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap_test
.
sql
;
#
# Check that --bootstrap of file with SQL error returns error
#
--
echo
#
--
echo
# Check that --bootstrap of file with SQL error returns error
--
echo
#
--
write_file
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap_error
.
sql
use
test
;
CREATE
TABLE
t1
;
...
...
@@ -32,9 +36,9 @@ EOF
drop
table
t1
;
remove_file
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap_error
.
sql
;
#
# Bootstrap with a large thd->net.max_packet
#
--
echo
#
--
echo
# Bootstrap with a large thd->net.max_packet
--
echo
#
set
@
my_max_allowed_packet
=
@@
max_allowed_packet
;
set
@@
global
.
max_allowed_packet
=
greatest
(
1073741824
,
@@
max_allowed_packet
);
set
@
max_allowed_packed
=@@
global
.
max_allowed_packet
;
...
...
@@ -49,7 +53,9 @@ remove_file $MYSQLTEST_VARDIR/tmp/long_query.sql;
set
global
max_allowed_packet
=@
my_max_allowed_packet
;
drop
table
t1
;
--
echo
End
of
5.1
tests
--
echo
#
--
echo
# End of 5.1 tests
--
echo
#
--
echo
#
--
echo
# Bug #11766306: 59393: HAVE_INNODB=YES WHEN MYSQLD
...
...
@@ -60,28 +66,24 @@ drop table t1;
SELECT
'bug'
as
''
FROM
INFORMATION_SCHEMA
.
ENGINES
WHERE
engine
=
'innodb'
and
SUPPORT
=
'YES'
;
#
# MDEV-13063 Server crashes in intern_plugin_lock or assertion `plugin_ptr->ref_count == 1' fails in plugin_init
#
--
echo
#
--
echo
# MDEV-13063 Server crashes in intern_plugin_lock or assertion `plugin_ptr->ref_count == 1' fails in plugin_init
--
echo
#
--
error
1
--
exec
$MYSQLD_BOOTSTRAP_CMD
--
myisam_recover_options
=
NONE
#
# MDEV-19349 mysql_install_db: segfault at tmp_file_prefix check
#
--
write_file
$MYSQLTEST_VARDIR
/
tmp
/
1
use
test
;
EOF
--
exec
$MYSQLD_BOOTSTRAP_CMD
<
$MYSQLTEST_VARDIR
/
tmp
/
1
>>
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap
.
log
2
>&
1
--
remove_file
$MYSQLTEST_VARDIR
/
tmp
/
1
--
echo
#
--
echo
# MDEV-19349 mysql_install_db: segfault at tmp_file_prefix check
--
echo
#
--
exec
$MYSQLD_BOOTSTRAP_CMD
<
$test_bootstrap
>>
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap
.
log
2
>&
1
--
echo
End
of
5.5
tests
--
echo
#
--
echo
# End of 5.5 tests
--
echo
#
--
source
include
/
not_windows_embedded
.
inc
--
source
include
/
have_example_plugin
.
inc
#
# Check that --bootstrap can install and uninstall plugins
#
--
echo
#
--
echo
# Check that --bootstrap can install and uninstall plugins
--
echo
#
let
$PLUGIN_DIR
=
`select @@plugin_dir`
;
--
write_file
$MYSQLTEST_VARDIR
/
tmp
/
install_plugin
.
sql
install
soname
'ha_example'
;
...
...
@@ -90,9 +92,9 @@ EOF
--
exec
$MYSQLD_BOOTSTRAP_CMD
--
plugin
-
dir
=
$PLUGIN_DIR
<
$MYSQLTEST_VARDIR
/
tmp
/
install_plugin
.
sql
>>
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap
.
log
2
>&
1
--
remove_file
$MYSQLTEST_VARDIR
/
tmp
/
install_plugin
.
sql
#
# Check that installed plugins are *not* automatically loaded in --bootstrap
#
--
echo
#
--
echo
# Check that installed plugins are *not* automatically loaded in --bootstrap
--
echo
#
--
write_file
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap_plugins
.
sql
SET
SQL_MODE
=
""
;
use
test
;
...
...
@@ -107,21 +109,17 @@ drop table t1;
select
*
from
mysql
.
plugin
;
truncate
table
mysql
.
plugin
;
--
echo
#
--
echo
# MDEV-9969 mysql_install_db error processing ignore_db_dirs.
--
echo
#
--
exec
$MYSQLD_BOOTSTRAP_CMD
--
ignore
-
db
-
dirs
=
'some_dir'
--
ignore
-
db
-
dirs
=
'some_dir'
<
$test_bootstrap
>>
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap
.
log
2
>&
1
#
# MDEV-9969 mysql_install_db error processing ignore_db_dirs.
#
--
write_file
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap_9969
.
sql
use
test
;
EOF
--
exec
$MYSQLD_BOOTSTRAP_CMD
--
ignore
-
db
-
dirs
=
'some_dir'
--
ignore
-
db
-
dirs
=
'some_dir'
<
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap_9969
.
sql
>>
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap
.
log
2
>&
1
--
remove_file
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap_9969
.
sql
--
echo
#
--
echo
# MDEV-13397 MariaDB upgrade fail when using default_time_zone
--
echo
#
--
exec
$MYSQLD_BOOTSTRAP_CMD
--
default
-
time
-
zone
=
Europe
/
Moscow
<
$test_bootstrap
>>
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap
.
log
2
>&
1
#
# MDEV-13397 MariaDB upgrade fail when using default_time_zone
#
--
write_file
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap_9969
.
sql
use
test
;
EOF
--
exec
$MYSQLD_BOOTSTRAP_CMD
--
default
-
time
-
zone
=
Europe
/
Moscow
<
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap_9969
.
sql
>>
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap
.
log
2
>&
1
--
remove_file
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap_9969
.
sql
--
echo
#
--
echo
# End of 10.3 tests
--
echo
#
--
remove_file
$test_bootstrap
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