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
d03ea827
Commit
d03ea827
authored
Oct 26, 2020
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test case for BUG#31650096
parent
a7d5e85c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
0 deletions
+34
-0
mysql-test/r/bootstrap_innodb.result
mysql-test/r/bootstrap_innodb.result
+7
-0
mysql-test/t/bootstrap_innodb.test
mysql-test/t/bootstrap_innodb.test
+27
-0
No files found.
mysql-test/r/bootstrap_innodb.result
0 → 100644
View file @
d03ea827
create table t1(a int) engine=innodb;
select * from t1;
a
1
2
5
drop table t1;
mysql-test/t/bootstrap_innodb.test
0 → 100644
View file @
d03ea827
source
include
/
have_static_innodb
.
inc
;
source
include
/
not_embedded
.
inc
;
let
$datadir
=
`select @@datadir`
;
create
table
t1
(
a
int
)
engine
=
innodb
;
source
include
/
shutdown_mysqld
.
inc
;
write_file
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap_test
.
sql
;
use
test
;
insert
t1
values
(
1
);
start
transaction
;
insert
t1
values
(
2
);
savepoint
s1
;
insert
t1
values
(
3
);
savepoint
s2
;
insert
t1
values
(
4
);
rollback
to
savepoint
s1
;
insert
t1
values
(
5
);
commit
;
EOF
exec
$MYSQLD_BOOTSTRAP_CMD
--
datadir
=
$datadir
--
innodb
<
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap_test
.
sql
>>
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap
.
log
2
>&
1
;
remove_file
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap_test
.
sql
;
source
include
/
start_mysqld
.
inc
;
select
*
from
t1
;
drop
table
t1
;
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