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
7ab53e80
Commit
7ab53e80
authored
Feb 14, 2012
by
Alexey Botchkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-59 Review and push crashsafe GIS keys.
tests for RTree keys recovery.
parent
e41e56ae
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
129 additions
and
0 deletions
+129
-0
mysql-test/suite/maria/r/maria-gis-recovery.result
mysql-test/suite/maria/r/maria-gis-recovery.result
+64
-0
mysql-test/suite/maria/t/maria-gis-recovery-master.opt
mysql-test/suite/maria/t/maria-gis-recovery-master.opt
+1
-0
mysql-test/suite/maria/t/maria-gis-recovery.test
mysql-test/suite/maria/t/maria-gis-recovery.test
+64
-0
No files found.
mysql-test/suite/maria/r/maria-gis-recovery.result
0 → 100644
View file @
7ab53e80
set global aria_log_file_size=4294967295;
drop database if exists mysqltest;
create database mysqltest;
use mysqltest;
* shut down mysqld, removed logs, restarted it
CREATE TABLE t1 (
i int,
shape GEOMETRY NOT NULL,
SPATIAL (shape)
) ENGINE=ARIA;
insert into t1 values(1,POINT(1, 1));
* copied t1 for feeding_recovery
insert into t1 values(2,POINT(2, 2)), (3,POINT(3, 3)), (4,POINT(4, 4));
flush table t1;
* copied t1 for comparison
SET SESSION debug="+d,maria_flush_whole_log,maria_crash";
* crashing mysqld intentionally
set global aria_checkpoint_interval=1;
ERROR HY000: Lost connection to MySQL server during query
* copied t1 back for feeding_recovery
* recovery happens
check table t1 extended;
Table Op Msg_type Msg_text
mysqltest.t1 check status OK
* testing that checksum after recovery is as expected
Checksum-check
ok
use mysqltest;
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`i` int(11) DEFAULT NULL,
`shape` geometry NOT NULL,
SPATIAL KEY `shape` (`shape`)
) ENGINE=Aria DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
* TEST of UPDATE vs state.auto_increment
* copied t1 for feeding_recovery
update t1 set shape=POINT(5, 5) where i=2;
flush table t1;
* copied t1 for comparison
SET SESSION debug="+d,maria_flush_whole_log,maria_crash";
* crashing mysqld intentionally
set global aria_checkpoint_interval=1;
ERROR HY000: Lost connection to MySQL server during query
* copied t1 back for feeding_recovery
* recovery happens
check table t1 extended;
Table Op Msg_type Msg_text
mysqltest.t1 check status OK
* testing that checksum after recovery is as expected
Checksum-check
ok
use mysqltest;
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`i` int(11) DEFAULT NULL,
`shape` geometry NOT NULL,
SPATIAL KEY `shape` (`shape`)
) ENGINE=Aria DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
drop table t1;
drop database mysqltest_for_feeding_recovery;
drop database mysqltest_for_comparison;
drop database mysqltest;
mysql-test/suite/maria/t/maria-gis-recovery-master.opt
0 → 100644
View file @
7ab53e80
--skip-stack-trace --skip-core-file --loose-aria-log-dir-path=$MYSQLTEST_VARDIR/tmp
mysql-test/suite/maria/t/maria-gis-recovery.test
0 → 100644
View file @
7ab53e80
--
source
include
/
not_embedded
.
inc
# Don't test this under valgrind, memory leaks will occur as we crash
--
source
include
/
not_valgrind
.
inc
# Binary must be compiled with debug for crash to occur
--
source
include
/
have_debug
.
inc
--
source
include
/
have_maria
.
inc
--
source
include
/
have_geometry
.
inc
set
global
aria_log_file_size
=
4294967295
;
let
$MARIA_LOG
=../../
tmp
;
--
disable_warnings
drop
database
if
exists
mysqltest
;
--
enable_warnings
create
database
mysqltest
;
let
$mms_tname
=
t
;
# Include scripts can perform SQL. For it to not influence the main test
# they use a separate connection. This way if they use a DDL it would
# not autocommit in the main test.
connect
(
admin
,
localhost
,
root
,,
mysqltest
,,);
--
enable_reconnect
connection
default
;
use
mysqltest
;
--
enable_reconnect
--
source
include
/
maria_empty_logs
.
inc
let
$mms_tables
=
1
;
CREATE
TABLE
t1
(
i
int
,
shape
GEOMETRY
NOT
NULL
,
SPATIAL
(
shape
)
)
ENGINE
=
ARIA
;
insert
into
t1
values
(
1
,
POINT
(
1
,
1
));
--
source
include
/
maria_make_snapshot_for_feeding_recovery
.
inc
insert
into
t1
values
(
2
,
POINT
(
2
,
2
)),
(
3
,
POINT
(
3
,
3
)),
(
4
,
POINT
(
4
,
4
));
--
source
include
/
maria_make_snapshot_for_comparison
.
inc
let
$mvr_restore_old_snapshot
=
1
;
let
$mms_compare_physically
=
0
;
let
$mvr_debug_option
=
"+d,maria_flush_whole_log,maria_crash"
;
let
$mvr_crash_statement
=
set
global
aria_checkpoint_interval
=
1
;
--
source
include
/
maria_verify_recovery
.
inc
show
create
table
t1
;
# Test that UPDATE's effect on auto-increment is recovered
--
echo
*
TEST
of
UPDATE
vs
state
.
auto_increment
--
source
include
/
maria_make_snapshot_for_feeding_recovery
.
inc
update
t1
set
shape
=
POINT
(
5
,
5
)
where
i
=
2
;
--
source
include
/
maria_make_snapshot_for_comparison
.
inc
let
$mvr_restore_old_snapshot
=
1
;
let
$mms_compare_physically
=
0
;
let
$mvr_debug_option
=
"+d,maria_flush_whole_log,maria_crash"
;
let
$mvr_crash_statement
=
set
global
aria_checkpoint_interval
=
1
;
--
source
include
/
maria_verify_recovery
.
inc
show
create
table
t1
;
drop
table
t1
;
# clean up everything
let
$mms_purpose
=
feeding_recovery
;
eval
drop
database
mysqltest_for_
$mms_purpose
;
let
$mms_purpose
=
comparison
;
eval
drop
database
mysqltest_for_
$mms_purpose
;
drop
database
mysqltest
;
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