2018-11-03 19:51:30 +03:00
|
|
|
# 2006 September 9
|
|
|
|
#
|
|
|
|
# The author disclaims copyright to this source code. In place of
|
|
|
|
# a legal notice, here is a blessing:
|
|
|
|
#
|
|
|
|
# May you do good and not evil.
|
|
|
|
# May you find forgiveness for yourself and forgive others.
|
|
|
|
# May you share freely, never taking more than you give.
|
|
|
|
#
|
|
|
|
#*************************************************************************
|
|
|
|
# This file implements regression tests for SQLite library. The
|
|
|
|
# focus of this script is testing the FTS3 module.
|
|
|
|
#
|
|
|
|
# $Id: fts3aa.test,v 1.1 2007/08/20 17:38:42 shess Exp $
|
|
|
|
#
|
|
|
|
|
|
|
|
set testdir [file dirname $argv0]
|
|
|
|
source $testdir/tester.tcl
|
|
|
|
set testprefix fts3corrupt4
|
|
|
|
|
|
|
|
# If SQLITE_ENABLE_FTS3 is defined, omit this file.
|
|
|
|
ifcapable !fts3 {
|
|
|
|
finish_test
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
do_execsql_test 1.0 {
|
|
|
|
BEGIN;
|
|
|
|
CREATE VIRTUAL TABLE ft USING fts3;
|
|
|
|
INSERT INTO ft VALUES('aback');
|
|
|
|
INSERT INTO ft VALUES('abaft');
|
|
|
|
INSERT INTO ft VALUES('abandon');
|
|
|
|
COMMIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
proc blob {a} { binary decode hex $a }
|
|
|
|
db func blob blob
|
|
|
|
|
|
|
|
do_execsql_test 1.1 {
|
|
|
|
SELECT quote(root) FROM ft_segdir;
|
|
|
|
} {X'0005616261636B03010200030266740302020003046E646F6E03030200'}
|
|
|
|
|
2018-11-06 22:26:04 +03:00
|
|
|
sqlite3_db_config db DEFENSIVE 0
|
2018-11-03 19:51:30 +03:00
|
|
|
do_execsql_test 1.2 {
|
|
|
|
UPDATE ft_segdir SET root = blob(
|
|
|
|
'0005616261636B03010200 FFFFFFFF0702 66740302020003046E646F6E03030200'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
do_catchsql_test 1.3 {
|
|
|
|
SELECT * FROM ft WHERE ft MATCH 'abandon';
|
|
|
|
} {1 {database disk image is malformed}}
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
reset_db
|
|
|
|
do_execsql_test 2.0.0 {
|
|
|
|
CREATE VIRTUAL TABLE ft USING fts3;
|
|
|
|
INSERT INTO ft(ft) VALUES('nodesize=32');
|
|
|
|
}
|
|
|
|
do_test 2.0.1 {
|
|
|
|
for {set i 0} {$i < 12} {incr i} {
|
|
|
|
execsql {
|
|
|
|
BEGIN;
|
|
|
|
INSERT INTO ft VALUES('abc' || $i);
|
|
|
|
INSERT INTO ft VALUES('abc' || $i || 'x' );
|
|
|
|
INSERT INTO ft VALUES('abc' || $i || 'xx' );
|
|
|
|
COMMIT
|
|
|
|
}
|
|
|
|
}
|
|
|
|
execsql {
|
|
|
|
SELECT count(*) FROM ft_segdir;
|
|
|
|
SELECT count(*) FROM ft_segments;
|
|
|
|
}
|
|
|
|
} {12 0}
|
|
|
|
|
|
|
|
do_execsql_test 2.1 {
|
|
|
|
INSERT INTO ft(ft) VALUES('merge=1,4');
|
|
|
|
SELECT count(*) FROM ft_segdir;
|
|
|
|
SELECT count(*) FROM ft_segments;
|
|
|
|
} {12 3}
|
|
|
|
|
|
|
|
do_execsql_test 2.2 {
|
|
|
|
SELECT quote(block) FROM ft_segments WHERE blockid=2
|
|
|
|
} {X'00056162633130031F0200'}
|
|
|
|
|
|
|
|
db func blob blob
|
2018-11-06 22:26:04 +03:00
|
|
|
sqlite3_db_config db DEFENSIVE 0
|
2018-11-03 19:51:30 +03:00
|
|
|
do_execsql_test 2.3.1 {
|
|
|
|
UPDATE ft_segments SET block =
|
|
|
|
blob('00056162633130031F0200 FFFFFFFF07FF55 66740302020003046E646F6E03030200')
|
|
|
|
WHERE blockid=2;
|
|
|
|
} {}
|
|
|
|
do_catchsql_test 2.3.2 {
|
|
|
|
INSERT INTO ft(ft) VALUES('merge=1,4');
|
|
|
|
} {1 {database disk image is malformed}}
|
|
|
|
|
|
|
|
do_execsql_test 2.4.1 {
|
|
|
|
UPDATE ft_segments SET block =
|
|
|
|
blob('00056162633130031F0200 02FFFFFFFF07 66740302020003046E646F6E03030200')
|
|
|
|
WHERE blockid=2;
|
|
|
|
} {}
|
|
|
|
do_catchsql_test 2.4.2 {
|
|
|
|
INSERT INTO ft(ft) VALUES('merge=1,4');
|
|
|
|
} {1 {database disk image is malformed}}
|
|
|
|
|
|
|
|
do_execsql_test 2.5.1 {
|
|
|
|
UPDATE ft_segments SET block =
|
|
|
|
blob('00056162633130031F0200 0202 6674 FFFFFF070302020003046E646F6E030200')
|
|
|
|
WHERE blockid=2;
|
|
|
|
} {}
|
|
|
|
do_catchsql_test 2.5.2 {
|
|
|
|
INSERT INTO ft(ft) VALUES('merge=1,4');
|
|
|
|
} {1 {database disk image is malformed}}
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
reset_db
|
|
|
|
do_execsql_test 3.0.0 {
|
|
|
|
CREATE VIRTUAL TABLE ft USING fts3;
|
|
|
|
INSERT INTO ft(ft) VALUES('nodesize=32');
|
|
|
|
}
|
|
|
|
do_test 3.0.1 {
|
|
|
|
execsql BEGIN
|
|
|
|
for {set i 0} {$i < 20} {incr i} {
|
|
|
|
execsql { INSERT INTO ft VALUES('abc' || $i) }
|
|
|
|
}
|
|
|
|
execsql {
|
|
|
|
COMMIT;
|
|
|
|
SELECT count(*) FROM ft_segdir;
|
|
|
|
SELECT count(*) FROM ft_segments;
|
|
|
|
}
|
|
|
|
} {1 5}
|
|
|
|
|
|
|
|
do_execsql_test 3.1 {
|
|
|
|
SELECT quote(root) FROM ft_segdir
|
|
|
|
} {X'0101056162633132040136030132030136'}
|
|
|
|
|
|
|
|
db func blob blob
|
2018-11-06 22:26:04 +03:00
|
|
|
sqlite3_db_config db DEFENSIVE 0
|
2018-11-03 19:51:30 +03:00
|
|
|
do_execsql_test 3.2 {
|
|
|
|
UPDATE ft_segdir
|
|
|
|
SET root = blob('0101056162633132FFFFFFFF070236030132030136');
|
|
|
|
}
|
|
|
|
|
|
|
|
do_catchsql_test 3.1 {
|
|
|
|
SELECT * FROM ft WHERE ft MATCH 'abc20'
|
|
|
|
} {1 {database disk image is malformed}}
|
|
|
|
|
2018-12-21 14:53:43 +03:00
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
reset_db
|
|
|
|
do_execsql_test 4.0 {
|
|
|
|
CREATE VIRTUAL TABLE t1 USING fts3();
|
|
|
|
INSERT INTO t1 VALUES('one two three');
|
|
|
|
UPDATE t1_segdir SET start_block = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
do_catchsql_test 4.1 {
|
|
|
|
SELECT * FROM t1 WHERE t1 MATCH 'one';
|
|
|
|
} {1 {database disk image is malformed}}
|
|
|
|
do_catchsql_test 4.2 {
|
|
|
|
SELECT * FROM t1 WHERE t1 MATCH 'two';
|
|
|
|
} {1 {database disk image is malformed}}
|
|
|
|
do_catchsql_test 4.3 {
|
|
|
|
SELECT * FROM t1 WHERE t1 MATCH 'three';
|
|
|
|
} {1 {database disk image is malformed}}
|
|
|
|
do_execsql_test 4.4 {
|
|
|
|
INSERT INTO t1(t1) VALUES('optimize');
|
|
|
|
}
|
|
|
|
|
2018-12-26 17:15:09 +03:00
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
reset_db
|
|
|
|
do_test 5.0 {
|
|
|
|
sqlite3 db {}
|
|
|
|
db deserialize [decode_hexdb {
|
|
|
|
| size 24576 pagesize 4096 filename c15.db
|
|
|
|
| page 1 offset 0
|
|
|
|
| 0: 53 51 4c 69 74 65 20 66 6f 72 6d 61 74 20 33 00 SQLite format 3.
|
|
|
|
| 16: 10 00 01 01 00 40 20 20 00 00 00 00 00 00 00 04 .....@ ........
|
|
|
|
| 32: 00 00 00 00 00 00 00 00 00 00 00 04 00 00 00 04 ................
|
|
|
|
| 48: 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 ................
|
|
|
|
| 96: 00 00 00 00 0d 0e f9 00 06 0d ec 00 0f cd 0f 69 ...............i
|
|
|
|
| 112: 0f 01 0e 10 0e c6 0d ec 00 00 00 00 00 00 00 00 ................
|
|
|
|
| 3552: 00 00 00 00 00 00 00 00 00 00 00 00 22 06 06 17 ................
|
|
|
|
| 3568: 11 11 01 31 74 61 62 6c 65 74 32 74 32 06 43 52 ...1tablet2t2.CR
|
|
|
|
| 3584: 45 41 54 45 20 54 41 42 4c 45 20 74 32 28 78 29 EATE TABLE t2(x)
|
|
|
|
| 3600: 81 33 04 07 17 1f 1f 01 82 35 74 61 62 6c 65 74 .3.......5tablet
|
|
|
|
| 3616: 31 5f 73 65 67 64 69 72 74 31 5f 73 65 67 64 69 1_segdirt1_segdi
|
|
|
|
| 3632: 72 04 43 52 45 41 54 45 20 54 41 42 4c 45 20 27 r.CREATE TABLE '
|
|
|
|
| 3648: 74 31 5f 73 65 67 64 69 72 27 28 6c 65 76 65 6c t1_segdir'(level
|
|
|
|
| 3664: 20 49 4e 54 45 47 45 52 2c 69 64 78 20 49 4e 54 INTEGER,idx INT
|
|
|
|
| 3680: 45 47 45 52 2c 73 74 61 72 74 5f 62 6c 6f 63 6b EGER,start_block
|
|
|
|
| 3696: 20 49 4e 54 45 47 45 52 2c 6c 65 61 76 65 73 5f INTEGER,leaves_
|
|
|
|
| 3712: 65 6e 64 5f 62 6c 6f 63 6b 20 49 4e 54 45 47 45 end_block INTEGE
|
|
|
|
| 3728: 52 2c 65 6e 64 5f 62 6c 6f 63 6b 20 49 4e 54 45 R,end_block INTE
|
|
|
|
| 3744: 47 45 52 2c 72 6f 6f 74 20 42 4c 4f 42 2c 50 52 GER,root BLOB,PR
|
|
|
|
| 3760: 49 4d 41 52 59 20 4b 45 59 28 6c 65 76 65 6c 2c IMARY KEY(level,
|
|
|
|
| 3776: 20 69 64 78 29 29 31 05 06 17 45 1f 01 00 69 6e idx))1...E...in
|
|
|
|
| 3792: 64 65 78 73 71 6c 69 74 65 5f 61 75 74 6f 69 6e dexsqlite_autoin
|
|
|
|
| 3808: 64 65 79 5f 74 31 5f 73 65 67 64 69 72 5f 31 74 dey_t1_segdir_1t
|
|
|
|
| 3824: 31 5f 73 65 67 64 69 72 05 00 00 00 08 00 00 00 1_segdir........
|
|
|
|
| 3840: 00 66 03 07 17 23 23 01 81 13 74 61 62 6c 65 74 .f...##...tablet
|
|
|
|
| 3856: 31 5f 73 65 67 6d 65 6e 74 73 74 31 5f 73 65 67 1_segmentst1_seg
|
|
|
|
| 3872: 6d 65 6e 74 73 03 43 52 45 41 54 45 20 54 41 42 ments.CREATE TAB
|
|
|
|
| 3888: 4c 45 20 27 74 31 5f 73 65 67 6d 65 6e 74 73 27 LE 't1_segments'
|
|
|
|
| 3904: 28 62 6c 6f 63 6b 69 64 20 49 4e 54 45 47 45 52 (blockid INTEGER
|
|
|
|
| 3920: 20 50 52 49 4d 41 52 59 20 4b 45 59 2c 20 62 6c PRIMARY KEY, bl
|
|
|
|
| 3936: 6f 63 6b 20 42 4c 4f 42 29 62 02 07 17 21 21 01 ock BLOB)b...!!.
|
|
|
|
| 3952: 81 0f 74 61 62 6c 65 74 31 5f 63 6f 6e 74 65 6e ..tablet1_conten
|
|
|
|
| 3968: 74 74 31 5f 63 6f 6e 74 65 6e 74 02 43 52 45 41 tt1_content.CREA
|
|
|
|
| 3984: 54 45 20 54 41 42 4c 45 20 27 74 31 5f 63 6f 6e TE TABLE 't1_con
|
|
|
|
| 4000: 74 65 6e 74 27 28 64 6f 63 69 64 20 49 4e 54 45 tent'(docid INTE
|
|
|
|
| 4016: 47 45 52 20 50 52 49 4d 41 52 59 20 4b 45 59 2c GER PRIMARY KEY,
|
|
|
|
| 4032: 20 27 63 30 63 6f 6e 74 65 6e 74 27 29 31 01 06 'c0content')1..
|
|
|
|
| 4048: 17 11 11 08 51 74 61 62 6c 65 74 31 74 31 43 52 ....Qtablet1t1CR
|
|
|
|
| 4064: 45 41 54 45 20 56 49 52 54 55 41 4c 20 54 41 42 EATE VIRTUAL TAB
|
|
|
|
| 4080: 4c 45 20 74 31 20 55 53 49 4e 47 20 66 74 73 33 LE t1 USING fts3
|
|
|
|
| page 2 offset 4096
|
|
|
|
| 0: 0d 00 00 00 03 0f e0 00 0f f6 0f ec 0f e0 00 00 ................
|
|
|
|
| 4064: 0a 03 03 00 1b 61 62 61 6e 64 6f 6e 08 02 03 00 .....abandon....
|
|
|
|
| 4080: 17 61 62 61 66 74 08 01 03 00 17 61 62 61 63 6b .abaft.....aback
|
|
|
|
| page 3 offset 8192
|
|
|
|
| 0: 0d 00 00 00 00 10 00 00 00 00 00 00 00 00 00 00 ................
|
|
|
|
| page 4 offset 12288
|
|
|
|
| 0: 0d 00 00 00 01 0f d6 00 0f d6 00 00 00 00 00 00 ................
|
|
|
|
| 4048: 00 00 00 00 00 00 28 01 07 08 08 08 08 15 46 30 ......(.......F0
|
|
|
|
| 4064: 20 32 39 00 05 61 62 61 63 6b 03 01 02 00 03 02 29..aback......
|
|
|
|
| 4080: 66 74 03 02 02 00 03 04 6e 64 6f 60 30 30 20 00 ft......ndo`00 .
|
|
|
|
| page 5 offset 16384
|
|
|
|
| 0: a0 00 00 00 10 ff b0 00 ff fb 00 00 00 00 00 00 ................
|
|
|
|
| 4080: 00 00 00 00 00 00 00 00 00 00 00 04 04 08 08 09 ................
|
|
|
|
| page 6 offset 20480
|
|
|
|
| 0: 0d 00 00 00 05 0f b8 00 0f f4 0f e9 0f d6 0f c7 ................
|
|
|
|
| 16: 0f b8 27 74 31 5f 63 6f 6e 74 65 6e 74 27 28 64 ..'t1_content'(d
|
|
|
|
| 32: 6f 63 69 64 20 49 4e 54 45 47 45 52 20 50 52 49 ocid INTEGER PRI
|
|
|
|
| 48: 4d 41 52 59 20 4b 45 59 2c 20 27 63 30 63 6f 6e MARY KEY, 'c0con
|
|
|
|
| 64: 74 65 6e 74 27 29 31 01 06 17 11 11 08 51 74 61 tent')1......Qta
|
|
|
|
| 80: 62 6c 65 74 31 74 31 43 52 45 41 54 45 20 56 49 blet1t1CREATE VI
|
|
|
|
| 96: 52 54 55 41 4c 20 54 41 42 4c 45 20 74 31 20 55 RTUAL TABLE t1 U
|
|
|
|
| 112: 53 49 4e 47 20 66 74 73 33 0d 00 00 00 03 0f e0 SING fts3.......
|
|
|
|
| 128: 00 0f f6 0f ec 0f e0 00 00 00 00 00 00 00 00 00 ................
|
|
|
|
| 4016: 00 00 00 00 00 00 00 00 0d 05 02 23 61 75 74 6f ...........#auto
|
|
|
|
| 4032: 6d 65 72 67 65 3d 35 0d 04 02 23 6d 65 72 67 65 merge=5...#merge
|
|
|
|
| 4048: 3d 31 30 30 2c 38 11 03 02 2b 69 6e 74 65 67 72 =100,8...+integr
|
|
|
|
| 4064: 69 74 79 2d 63 68 65 63 6b 09 02 02 1b 72 65 62 ity-check....reb
|
|
|
|
| 4080: 75 69 6c 64 0a 01 02 1d 6f 70 74 69 6d 69 7a 65 uild....optimize
|
|
|
|
| end c15.db
|
|
|
|
}]} {}
|
|
|
|
|
|
|
|
do_catchsql_test 5.1 {
|
|
|
|
SELECT * FROM t1 WHERE t1 MATCH 'abandon';
|
2019-01-10 17:33:15 +03:00
|
|
|
} {1 {malformed database schema (sqlite_autoindey_t1_segdir_1) - orphan index}}
|
2018-12-21 14:53:43 +03:00
|
|
|
|
2019-01-12 00:34:25 +03:00
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
reset_db
|
2019-01-12 03:07:48 +03:00
|
|
|
database_may_be_corrupt
|
2019-01-12 00:34:25 +03:00
|
|
|
do_execsql_test 6.0 {
|
|
|
|
CREATE VIRTUAL TABLE Table0 USING fts3();
|
|
|
|
INSERT INTO Table0_segdir VALUES(1,NULL,1,NULL,NULL,NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
do_catchsql_test 6.1 {
|
|
|
|
SELECT * FROM Table0 WHERE Table0 MATCH 'a';
|
|
|
|
} {0 {}}
|
|
|
|
|
|
|
|
do_catchsql_test 6.2 {
|
|
|
|
INSERT INTO Table0(Table0) VALUES('optimize');
|
|
|
|
} {0 {}}
|
|
|
|
|
2019-01-12 17:58:35 +03:00
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
reset_db
|
|
|
|
do_test 7.0 {
|
|
|
|
sqlite3 db {}
|
|
|
|
db deserialize [decode_hexdb {
|
|
|
|
| size 32768 pagesize 4096 filename crash-04bb6e7c811ce9.db
|
|
|
|
| page 1 offset 0
|
|
|
|
| 0: 53 51 4c 69 74 65 20 66 6f 72 6d 61 74 20 33 00 SQLite format 3.
|
|
|
|
| 16: 10 00 01 01 00 40 20 20 00 00 00 00 00 00 00 07 .....@ ........
|
|
|
|
| 32: 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 04 ................
|
|
|
|
| 48: 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 ................
|
|
|
|
| 96: 00 00 00 00 0d 0e ef 00 07 0d 4d 00 0f bd 0f 5f ..........M...._
|
|
|
|
| 112: 0e f7 0e 06 0e bc 0d a4 0d 4d 00 00 00 00 00 00 .........M......
|
|
|
|
| 3392: 00 00 00 00 00 00 00 00 00 00 00 00 00 55 07 07 .............U..
|
|
|
|
| 3408: 17 1b 1b 01 81 01 74 61 62 6c 65 74 31 5f 73 74 ......tablet1_st
|
|
|
|
| 3424: 61 74 74 31 5f 73 74 61 74 07 43 52 45 41 54 45 att1_stat.CREATE
|
|
|
|
| 3440: 20 54 41 42 4c 45 20 27 74 31 5f 73 74 61 74 27 TABLE 't1_stat'
|
|
|
|
| 3456: 28 69 64 20 49 4e 54 45 47 45 52 20 50 52 49 4d (id INTEGER PRIM
|
|
|
|
| 3472: 41 52 59 20 4b 45 59 2c 20 76 61 6c 75 65 20 42 ARY KEY, value B
|
|
|
|
| 3488: 4c 4f 42 29 60 06 07 17 21 21 01 81 0b 74 61 62 LOB)`...!!...tab
|
|
|
|
| 3504: 6c 65 74 31 5f 64 6f 63 73 69 7a 65 74 31 5f 64 let1_docsizet1_d
|
|
|
|
| 3520: 6f 63 73 69 7a 65 06 43 52 45 41 54 45 20 54 41 ocsize.CREATE TA
|
|
|
|
| 3536: 42 4c 45 20 27 74 31 5f 64 6f 63 73 69 7a 65 27 BLE 't1_docsize'
|
|
|
|
| 3552: 28 64 6f 63 69 64 20 49 4e 54 45 47 45 52 20 50 (docid INTEGER P
|
|
|
|
| 3568: 52 49 4d 41 52 59 20 4b 45 59 2c 20 73 69 7a 65 RIMARY KEY, size
|
|
|
|
| 3584: 20 42 4c 4f 42 29 81 33 04 07 17 1f 1f 01 82 35 BLOB).3.......5
|
|
|
|
| 3600: 74 61 62 6c 65 74 31 5f 73 65 67 64 69 72 74 31 tablet1_segdirt1
|
|
|
|
| 3616: 5f 73 65 67 64 69 72 04 43 52 45 41 54 45 20 54 _segdir.CREATE T
|
|
|
|
| 3632: 41 42 4c 45 20 27 74 31 5f 73 65 67 64 69 72 27 ABLE 't1_segdir'
|
|
|
|
| 3648: 28 6c 65 76 65 6c 20 49 4e 54 45 47 45 52 2c 69 (level INTEGER,i
|
|
|
|
| 3664: 64 78 20 49 4e 54 45 47 45 52 2c 73 74 61 72 74 dx INTEGER,start
|
|
|
|
| 3680: 5f 62 6c 6f 63 6b 20 49 4e 54 45 47 45 52 2c 6c _block INTEGER,l
|
|
|
|
| 3696: 65 61 76 65 73 5f 65 6e 64 5f 62 6c 6f 63 6b 20 eaves_end_block
|
|
|
|
| 3712: 49 4e 54 45 47 45 52 2c 65 6e 64 5f 62 6c 6f 63 INTEGER,end_bloc
|
|
|
|
| 3728: 6b 20 49 4e 54 45 47 45 52 2c 72 6f 6f 74 20 42 k INTEGER,root B
|
|
|
|
| 3744: 4c 4f 42 2c 50 52 49 4d 41 52 59 20 4b 45 59 28 LOB,PRIMARY KEY(
|
|
|
|
| 3760: 6c 65 76 65 6c 2c 20 69 64 78 29 29 31 05 06 17 level, idx))1...
|
|
|
|
| 3776: 45 1f 01 00 69 6e 64 65 78 73 71 6c 69 74 65 5f E...indexsqlite_
|
|
|
|
| 3792: 61 75 74 6f 69 6e 64 65 78 5f 74 31 5f 73 65 67 autoindex_t1_seg
|
|
|
|
| 3808: 64 69 72 5f 31 74 31 5f 73 65 67 64 69 72 05 00 dir_1t1_segdir..
|
|
|
|
| 3824: 00 00 08 00 00 00 00 66 03 07 17 23 23 01 81 13 .......f...##...
|
|
|
|
| 3840: 74 61 62 6c 65 74 31 5f 73 65 67 6d 65 6e 74 73 tablet1_segments
|
|
|
|
| 3856: 74 31 5f 73 65 67 6d 65 6e 74 73 03 43 52 45 41 t1_segments.CREA
|
|
|
|
| 3872: 54 45 20 54 41 42 4c 45 20 27 74 31 5f 73 65 67 TE TABLE 't1_seg
|
|
|
|
| 3888: 6d 65 6e 74 73 27 28 62 6c 6f 63 6b 69 64 20 49 ments'(blockid I
|
|
|
|
| 3904: 4e 54 45 47 45 52 20 50 52 49 4d 41 52 59 20 4b NTEGER PRIMARY K
|
|
|
|
| 3920: 45 59 2c 20 62 6c 6f 63 6b 20 42 4c 4f 42 29 5c EY, block BLOB).
|
|
|
|
| 3936: 02 07 17 21 21 01 81 03 74 61 62 6c 65 74 31 5f ...!!...tablet1_
|
|
|
|
| 3952: 63 6f 6e 74 65 6e 74 74 31 5f 63 6f 6e 74 65 6e contentt1_conten
|
|
|
|
| 3968: 74 02 43 52 45 41 54 45 20 54 41 42 4c 45 20 27 t.CREATE TABLE '
|
|
|
|
| 3984: 74 31 5f 63 6f 6e 74 65 6e 74 27 28 64 6f 63 69 t1_content'(doci
|
|
|
|
| 4000: 64 20 49 4e 54 45 47 45 52 20 50 52 49 4d 41 52 d INTEGER PRIMAR
|
|
|
|
| 4016: 59 20 4b 45 59 2c 20 27 63 30 61 27 29 41 01 06 Y KEY, 'c0a')A..
|
|
|
|
| 4032: 17 11 11 08 71 74 61 62 6c 65 74 31 74 31 43 52 ....qtablet1t1CR
|
|
|
|
| 4048: 45 41 54 45 20 56 49 52 54 55 41 4c 20 54 41 42 EATE VIRTUAL TAB
|
|
|
|
| 4064: 4c 45 20 74 31 20 55 53 49 4e 47 20 66 74 73 34 LE t1 USING fts4
|
|
|
|
| 4080: 28 61 2c 70 72 65 66 69 78 3d 27 31 2c 32 27 29 (a,prefix='1,2')
|
|
|
|
| page 2 offset 4096
|
|
|
|
| 0: 0d 00 00 00 08 0e 1f 00 0f c4 0f 7c 0f 34 0f 07 ...........|.4..
|
|
|
|
| 16: 0e c3 0e 97 0e 63 0e 1f 00 00 00 00 00 00 00 00 .....c..........
|
|
|
|
| 3600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 42 ...............B
|
|
|
|
| 3616: 08 04 00 81 09 73 75 6e 74 20 69 6e 20 63 75 6c .....sunt in cul
|
|
|
|
| 3632: 70 61 20 71 75 69 20 6f 66 66 69 63 69 61 20 64 pa qui officia d
|
|
|
|
| 3648: 65 73 65 72 75 6e 74 20 6d 6f 6c 6c 69 74 20 61 eserunt mollit a
|
|
|
|
| 3664: 6e 69 6d 20 69 64 20 65 73 74 20 6c 61 62 6f 72 nim id est labor
|
|
|
|
| 3680: 75 6d 2e 32 07 03 00 6b 45 78 63 65 70 74 65 75 um.2...kExcepteu
|
|
|
|
| 3696: 72 20 73 69 6e 74 20 6f 63 63 61 65 63 67 42 06 r sint occaecgB.
|
|
|
|
| 3712: 37 57 06 96 46 17 46 17 42 06 e6 f6 e2 07 07 26 7W..F.F.B......&
|
|
|
|
| 3728: f6 96 46 56 e7 42 c2 a0 60 30 05 b6 36 96 c6 c7 ..FV.B..`0..6...
|
|
|
|
| 3744: 56 d2 06 46 f6 c6 f7 26 52 06 57 52 06 67 56 7c V..F...&R.WR.gV|
|
|
|
|
| 3760: 65 3f 04 20 6e 75 6c 6c 61 20 70 61 72 69 61 74 e?. nulla pariat
|
|
|
|
| 3776: 75 72 2e 42 05 04 00 81 09 44 75 69 73 20 61 75 ur.B.....Duis au
|
|
|
|
| 3792: 74 65 20 69 72 75 72 65 20 64 6f 6c 6f 72 20 69 te irure dolor i
|
|
|
|
| 3808: 6e 20 72 65 70 72 65 68 65 6e 64 65 72 69 74 20 n reprehenderit
|
|
|
|
| 3824: 69 6e 20 76 6f 6c 75 70 74 61 74 65 20 76 65 6c in voluptate vel
|
|
|
|
| 3840: 69 74 20 65 73 73 65 2b 04 03 00 5d 6e 69 73 69 it esse+...]nisi
|
|
|
|
| 3856: 20 75 74 20 61 6c 69 71 75 69 70 20 65 78 20 65 ut aliquip ex e
|
|
|
|
| 3872: 61 20 63 6f 6d 6d 6f 64 6f 20 63 6f 6e 73 65 71 a commodo conseq
|
|
|
|
| 3888: 75 61 74 2e 46 03 04 00 81 11 55 74 20 65 6e 69 uat.F.....Ut eni
|
|
|
|
| 3904: 6d 20 61 64 20 6d 69 6e 69 6d 20 76 65 6e 69 61 m ad minim venia
|
|
|
|
| 3920: 6d 2c 20 71 75 69 73 20 6e 6f 73 74 72 75 64 20 m, quis nostrud
|
|
|
|
| 3936: 65 78 65 72 63 69 74 61 74 69 6f 6e 20 75 6c 6c exercitation ull
|
|
|
|
| 3952: 61 6d 63 6f 20 6c 61 62 6f 72 69 73 46 02 04 00 amco laborisF...
|
|
|
|
| 3968: 81 11 73 65 64 20 64 6f 20 65 69 75 73 6d 6f 64 ..sed do eiusmod
|
|
|
|
| 3984: 20 74 65 6d 70 6f 72 20 69 6e 63 69 64 69 64 75 tempor incididu
|
|
|
|
| 4000: 6e 74 20 75 74 20 6c 61 62 6f 72 65 20 65 74 20 nt ut labore et
|
|
|
|
| 4016: 64 6f 6c 6f 72 65 20 6d 61 67 6e 61 20 61 6c 69 dolore magna ali
|
|
|
|
| 4032: 71 75 61 2e 3a 01 03 00 7b 4c 6f 72 65 6d 20 69 qua.:....Lorem i
|
|
|
|
| 4048: 70 73 75 6d 20 64 6f 6c 6f 72 20 73 69 72 12 29 psum dolor sir.)
|
|
|
|
| 4064: 0d 65 74 2c 20 63 6f 6e 73 65 63 74 65 74 75 72 .et, consectetur
|
|
|
|
| 4080: 20 61 64 69 70 69 73 63 69 6e 67 20 65 6c 69 74 adipiscing elit
|
|
|
|
| page 3 offset 8192
|
|
|
|
| 0: 0d 00 00 00 00 10 30 00 10 17 50 30 80 20 00 00 ......0...P0. ..
|
|
|
|
| 16: 27 46 50 30 20 50 00 00 27 56 c0 30 30 a0 00 10 'FP0 P..'V.00...
|
|
|
|
| 32: 17 40 90 20 70 00 10 20 00 10 30 00 00 27 66 50 .@. p.. ..0..'fP
|
|
|
|
| 48: 60 30 60 00 20 a0 00 10 16 f0 30 50 90 08 20 a0 `0`. .....0P.. .
|
|
|
|
| 64: 20 80 20 80 80 81 78 40 20 40 03 02 03 23 53 10 . ...x@ @...#S.
|
|
|
|
| 80: 00 16 11 30 10 60 40 00 10 c0 00 10 40 00 00 00 ...0.`@.....@...
|
|
|
|
| 96: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 78 24 ..............x$
|
|
|
|
| 112: 41 71 83 37 10 27 97 60 10 40 00 00 16 41 10 10 Aq.7.'.`.@...A..
|
|
|
|
| 128: 40 00 10 30 90 00 30 20 50 00 10 30 00 20 70 00 @..0..0 P..0. p.
|
|
|
|
| 144: 00 16 51 b0 10 90 00 10 40 70 00 10 30 80 00 10 ..Q.....@p..0...
|
|
|
|
| 160: 50 30 00 10 b0 00 10 40 00 10 20 00 10 b0 00 00 P0.....@.. .....
|
|
|
|
| 176: 16 60 30 60 50 00 00 16 90 f0 10 30 00 10 60 00 .`0`P......0..`.
|
|
|
|
| 192: 30 40 40 40 00 30 30 90 00 00 16 c0 c0 10 20 00 0@@@.00....... .
|
|
|
|
| 208: 10 80 00 10 b0 00 50 c0 00 00 16 d0 90 20 b0 00 ......P...... ..
|
|
|
|
| 224: 10 50 00 50 80 00 00 16 e0 c0 30 80 00 10 20 00 .P.P......0... .
|
|
|
|
| 240: 20 60 00 10 60 00 00 16 f0 60 70 40 00 10 60 00 `..`....`p@..`.
|
|
|
|
| 256: 00 17 00 60 60 70 00 10 70 00 00 17 10 60 30 70 ...``p..p....`0p
|
|
|
|
| 272: 00 50 50 00 00 17 20 30 50 70 00 00 17 30 c0 10 .PP... 0Pp...0..
|
|
|
|
| 288: 50 00 10 20 00 50 30 00 10 20 00 00 17 40 30 20 P.. .P0.. ...@0
|
|
|
|
| 304: 50 00 00 17 50 a0 20 70 00 10 20 a0 00 10 30 00 P...P. p.. ...0.
|
|
|
|
| 320: 00 17 60 70 30 60 00 20 90 30 08 52 60 10 80 80 ..`p0`. .0.R`...
|
|
|
|
| 336: 80 80 81 78 a3 e3 02 03 63 63 50 00 26 16 40 30 ...x....ccP.&.@0
|
|
|
|
| 352: 30 40 00 20 86 97 06 97 36 36 96 e6 70 30 10 80 0@. ....66..p0..
|
|
|
|
| 368: 00 10 56 c6 97 17 56 10 30 20 c0 00 50 26 97 00 ..V...V.0 ..P&..
|
|
|
|
| 384: 30 40 40 00 10 36 d6 57 40 30 10 60 00 10 36 e6 0@@..6.W@0.`..6.
|
|
|
|
| 400: 96 d0 30 80 90 00 10 37 57 46 50 30 50 30 00 00 ..0....7WFP0P0..
|
|
|
|
| 416: 66 36 96 c6 c7 56 d0 30 60 20 00 10 66 f6 d6 d6 f6...V.0` ..f...
|
|
|
|
| 432: f6 46 f0 30 40 70 00 20 96 e7 36 56 37 46 57 47 .F.0@p. ..6V7FWG
|
|
|
|
| 448: 57 20 30 10 70 00 50 47 17 56 17 40 30 40 80 00 W 0.p.PG.V.@0@..
|
|
|
|
| 464: 10 47 56 c7 06 10 30 80 40 00 20 77 06 96 46 17 .GV...0.@. w..F.
|
|
|
|
| 480: 46 17 40 30 70 50 00 00 86 46 57 36 57 27 56 e7 F.@0pP...FW6W'V.
|
|
|
|
| 496: 40 30 80 70 00 10 16 f0 30 20 30 00 20 36 c6 f7 @0.p....0 0. 6..
|
|
|
|
| 512: 20 60 10 40 00 40 50 00 50 16 50 60 20 a0 00 40 `.@.@P.P.P` ..@
|
|
|
|
| 528: 30 00 10 37 56 97 30 30 50 20 00 00 26 56 10 30 0..7V.00P ..&V.0
|
|
|
|
| 544: 40 60 00 10 66 97 57 36 d6 f6 40 30 20 40 00 10 @`..f.W6..@0 @..
|
|
|
|
| 560: 36 c6 97 40 30 10 90 00 15 35 14 c6 97 46 52 06 6..@0....5...FR.
|
|
|
|
| 576: 66 f7 26 d6 17 42 03 30 01 00 00 10 10 04 02 02 f.&..B.0........
|
|
|
|
| 592: 00 00 00 00 00 00 00 00 70 00 00 00 00 00 00 00 ........p.......
|
|
|
|
| 608: 00 00 00 00 60 00 00 00 40 00 00 00 00 00 00 00 ....`...@.......
|
|
|
|
| page 4 offset 12288
|
|
|
|
| 0: 0d 00 00 00 03 0a a6 00 0d 57 0c 4a 0a a6 00 00 .........W.J....
|
|
|
|
| 2720: 00 00 00 00 00 00 83 21 03 08 02 08 08 08 17 86 .......!........
|
|
|
|
| 2736: 30 08 00 30 20 34 30 32 00 02 61 64 06 01 08 00 0..0 402..ad....
|
|
|
|
| 2752: 02 04 00 01 01 6c 06 02 0c 00 02 04 00 01 01 6d .....l.........m
|
|
|
|
| 2768: 03 01 06 00 01 01 6e 03 08 00 00 91 01 75 03 05 ......n......u..
|
|
|
|
| 2784: 03 00 00 02 63 69 03 06 02 00 01 01 6f 07 01 07 ....ci......o...
|
|
|
|
| 2800: 00 03 07 03 00 01 01 75 06 07 05 00 01 04 00 00 .......u........
|
|
|
|
| 2816: 02 64 65 03 08 07 00 01 01 6f 0d 01 04 00 01 03 .de......o......
|
|
|
|
| 2832: 09 00 03 05 00 01 03 00 01 01 75 03 05 02 00 00 ..........u.....
|
|
|
|
| 2848: 02 65 61 03 04 06 00 01 01 69 03 02 04 00 01 01 .ea......i......
|
|
|
|
| 2864: 6c 03 01 09 00 01 01 6e 30 03 03 00 01 01 73 06 l......n0.....s.
|
|
|
|
| 2880: 05 0b 00 03 0b 00 01 01 74 03 02 09 00 01 01 75 ........t......u
|
|
|
|
| 2896: 03 06 04 00 01 01 78 09 03 09 00 01 05 00 03 02 ......x.........
|
|
|
|
| 2912: 00 00 02 66 75 03 06 05 00 00 02 69 64 03 08 0a ...fu......id...
|
|
|
|
| 2928: 00 01 01 6e 0a 02 06 00 03 06 04 00 03 03 00 01 ...n............
|
|
|
|
| 2944: 01 70 03 01 03 00 01 01 72 03 05 04 00 00 02 6c .p......r......l
|
|
|
|
| 2960: 61 09 02 08 00 01 0b 00 05 0c 00 01 01 6f 03 01 a............o..
|
|
|
|
| 2976: 02 00 00 02 6d 61 03 02 0b 00 01 01 69 03 03 05 ....ma......i...
|
|
|
|
| 2992: 00 01 01 6f 03 08 08 00 00 02 6e 69 03 04 02 00 ...o......ni....
|
|
|
|
| 3008: 01 01 6f 06 03 08 00 04 06 00 01 01 75 03 06 06 ..o.........u...
|
|
|
|
| 3024: 00 00 02 6f 63 03 07 04 00 01 01 66 03 08 06 00 ...oc......f....
|
|
|
|
| 3040: 00 02 70 61 03 06 07 00 01 01 72 03 07 07 00 00 ..pa......r.....
|
|
|
|
| 3056: 02 71 75 06 03 07 00 05 05 00 00 02 72 65 03 05 .qu.........re..
|
|
|
|
| 3072: 07 00 00 02 73 65 03 02 02 00 01 01 69 06 01 05 ....se......i...
|
|
|
|
| 3088: 00 06 03 00 01 01 75 03 08 02 00 00 02 74 65 03 ......u......te.
|
|
|
|
| 3104: 02 05 00 00 02 75 6c 03 03 0a 00 01 01 74 09 02 .....ul......t..
|
|
|
|
| 3120: 07 00 01 02 00 01 03 00 00 02 76 65 06 03 06 00 ..........ve....
|
|
|
|
| 3136: 02 0a 00 01 01 6f 03 05 09 00 82 0a 02 08 02 08 .....o..........
|
|
|
|
| 3152: 08 08 17 84 02 04 00 30 20 32 35 31 00 01 61 13 .......0 251..a.
|
|
|
|
| 3168: 01 06 04 00 01 0c 00 01 04 00 01 04 00 01 03 00 ................
|
|
|
|
| 3184: 03 09 00 00 01 63 10 01 07 00 03 07 03 00 02 02 .....c..........
|
|
|
|
| 3200: 00 01 05 00 01 04 00 00 01 64 11 01 04 00 01 03 .........d......
|
|
|
|
| 3216: 09 00 03 02 05 00 01 03 00 02 07 00 00 01 65 1b ..............e.
|
|
|
|
| 3232: 01 09 00 01 04 01 70 00 03 01 80 00 05 03 00 01 ......p.........
|
|
|
|
| 3248: 0b 00 01 04 00 01 02 00 01 0b 00 00 01 66 03 06 .............f..
|
|
|
|
| 3264: 05 00 00 01 69 0f 01 03 00 01 06 00 03 04 04 04 ....i...........
|
|
|
|
| 3280: 00 03 03 09 00 00 01 6c 0c 01 02 00 01 08 00 01 .......l........
|
|
|
|
| 3296: 0b 00 05 0c 00 00 01 6d 09 02 0b 00 01 05 00 05 .......m........
|
|
|
|
| 3312: 08 00 00 01 6e 0c 03 08 00 01 02 00 02 06 00 01 ....n...........
|
|
|
|
| 3328: 06 00 00 01 6f 06 07 04 00 01 06 00 00 01 70 06 ....o.........p.
|
|
|
|
| 3344: 06 07 00 01 07 00 00 01 71 06 03 07 00 05 05 00 ........q.......
|
|
|
|
| 3360: 00 01 72 03 05 07 00 00 01 73 0c 01 05 00 01 02 ..r......s......
|
|
|
|
| 3376: 00 05 03 00 01 02 00 00 01 74 03 02 05 00 00 01 .........t......
|
|
|
|
| 3392: 75 0a 02 07 00 01 02 0a 00 01 03 00 00 01 76 07 u.............v.
|
|
|
|
| 3408: 03 06 00 02 09 03 00 85 26 01 08 08 08 08 08 17 ........&.......
|
|
|
|
| 3424: 8a 3e 30 20 36 36 35 00 02 61 64 03 03 04 00 02 .>0 665..ad.....
|
|
|
|
| 3440: 08 69 70 69 73 63 69 6e 67 03 01 08 00 01 05 6c .ipiscing......l
|
|
|
|
| 3456: 69 71 75 61 03 02 0c 00 05 02 69 70 03 04 04 00 iqua......ip....
|
|
|
|
| 3472: 01 03 6d 65 74 03 01 06 00 01 03 6e 69 6d 03 08 ..met......nim..
|
|
|
|
| 3488: 09 00 01 03 75 74 65 03 05 03 00 00 06 63 69 6c ....ute......cil
|
|
|
|
| 3504: 6c 75 6d 03 06 02 00 01 06 6f 6d 6d 6f 64 6f 03 lum......ommodo.
|
|
|
|
| 3520: 04 07 00 02 09 6e 73 65 63 74 65 74 75 72 03 01 .....nsectetur..
|
|
|
|
| 3536: 07 00 05 04 71 75 61 74 03 04 08 00 01 04 75 6c ....quat......ul
|
|
|
|
| 3552: 70 61 03 08 04 00 02 07 70 69 64 61 74 61 74 03 pa......pidatat.
|
|
|
|
| 3568: 07 05 00 00 08 64 65 73 65 72 75 6e 74 03 08 07 .....deserunt...
|
|
|
|
| 3584: 00 01 01 6f 03 02 03 00 02 03 6c 6f 72 06 01 04 ...o......lor...
|
|
|
|
| 3600: 00 04 05 00 05 01 65 06 02 0a 00 04 03 00 01 03 ......e.........
|
|
|
|
| 3616: 75 69 73 03 05 02 00 00 02 65 61 03 04 06 00 01 uis......ea.....
|
|
|
|
| 3632: 06 69 75 73 6d 6f 64 03 02 04 00 01 03 6c 69 74 .iusmod......lit
|
|
|
|
| 3648: 03 01 09 00 01 03 6e 69 6d 03 03 03 00 01 03 73 ......nim......s
|
|
|
|
| 3664: 73 65 03 05 0b 00 02 01 74 03 08 0b 00 01 01 74 se......t......t
|
|
|
|
| 3680: 03 02 09 00 01 01 75 03 06 04 00 01 01 78 03 04 ......u......x..
|
|
|
|
| 3696: 05 00 02 07 63 65 70 74 65 75 72 03 07 02 00 02 ....cepteur.....
|
|
|
|
| 3712: 0a 65 72 63 69 74 61 74 69 6f 6e 03 03 09 00 00 .ercitation.....
|
|
|
|
| 3728: 06 66 75 67 69 61 74 03 06 05 00 00 02 69 64 03 .fugiat......id.
|
|
|
|
| 3744: 08 0a 00 01 01 6e 07 05 06 04 00 03 03 00 02 08 .....n..........
|
|
|
|
| 3760: 63 69 64 69 64 75 6e 74 03 02 06 00 01 04 70 73 cididunt......ps
|
|
|
|
| 3776: 75 6d 03 01 03 00 01 04 72 75 72 65 03 05 04 00 um......rure....
|
|
|
|
| 3792: 00 06 6c 61 62 6f 72 65 03 02 08 00 05 02 69 73 ..labore......is
|
|
|
|
| 3808: 03 03 0b 00 05 02 75 6d 03 08 0c 00 01 04 6f 72 ......um......or
|
|
|
|
| 3824: 65 6d 03 01 02 00 00 05 6d 61 67 6e 61 03 02 0b em......magna...
|
|
|
|
| 3840: 00 01 04 69 6e 69 6d 03 03 05 00 01 05 6f 6c 6c ...inim......oll
|
|
|
|
| 3856: 69 74 03 08 08 00 00 04 6e 69 73 69 03 04 02 00 it......nisi....
|
|
|
|
| 3872: 01 02 6f 6e 03 07 06 00 02 05 73 74 72 75 64 03 ..on......strud.
|
|
|
|
| 3888: 03 08 00 01 04 75 6c 6c 61 03 06 06 00 00 08 6f .....ulla......o
|
|
|
|
| 3904: 63 63 61 65 63 61 74 03 07 04 00 01 06 66 66 69 ccaecat......ffi
|
|
|
|
| 3920: 63 69 61 03 08 06 00 00 08 70 61 72 69 61 74 75 cia......pariatu
|
|
|
|
| 3936: 72 03 06 07 00 01 07 72 6f 69 64 65 6e 74 03 07 r......roident..
|
|
|
|
| 3952: 07 00 00 03 71 75 69 03 08 05 00 03 01 73 03 03 ....qui......s..
|
|
|
|
| 3968: 07 00 00 0d 72 65 70 72 65 68 65 6e 64 65 72 69 ....reprehenderi
|
|
|
|
| 3984: 74 03 05 07 00 00 03 73 65 64 03 02 02 00 01 03 t......sed......
|
|
|
|
| 4000: 69 6e 74 03 07 03 00 02 01 74 03 01 05 00 01 03 int......t......
|
|
|
|
| 4016: 75 6e 74 03 08 02 00 00 06 74 65 6d 70 6f 72 03 unt......tempor.
|
|
|
|
| 4032: 02 05 00 00 07 75 6c 6c 61 6d 63 6f 03 03 0a 00 .....ullamco....
|
|
|
|
| 4048: 01 01 74 09 02 07 00 01 02 00 01 03 00 00 05 76 ..t............v
|
|
|
|
| 4064: 65 6c 69 74 03 05 0a 00 02 04 6e 69 61 6d 03 03 elit......niam..
|
|
|
|
| 4080: 06 00 01 08 6f 6c 75 70 74 61 74 65 03 05 09 00 ....oluptate....
|
|
|
|
| page 5 offset 16384
|
|
|
|
| 0: 0a 00 00 00 03 0f eb 00 0f fb 0f f3 0f eb 00 00 ................
|
|
|
|
| 4064: 00 00 00 00 00 00 00 00 00 00 00 07 04 02 08 01 ................
|
|
|
|
| 4080: 08 00 03 07 04 02 08 01 04 00 02 04 04 08 08 09 ................
|
|
|
|
| page 6 offset 20480
|
|
|
|
| 0: 0d 00 00 00 08 0f d0 00 0f fa 0f f4 0f ee 0f e8 ................
|
|
|
|
| 16: 0f e2 0f dc 0f d6 0f d0 00 00 00 00 00 00 00 00 ................
|
|
|
|
| 4048: 04 08 03 00 0e 0b 04 07 03 00 0e 06 04 06 03 00 ................
|
|
|
|
| 4064: 0e 06 04 05 03 00 0e 0a 04 04 03 00 0e 07 04 03 ................
|
|
|
|
| 4080: 03 00 0e 0a 04 02 03 00 0e 0b 04 01 03 00 0e 08 ................
|
|
|
|
| page 7 offset 24576
|
|
|
|
| 0: 0d 00 00 00 01 0f f7 00 0f f7 00 00 00 00 00 00 ................
|
|
|
|
| 4080: 00 00 00 00 00 00 00 07 00 03 00 14 08 45 b5 03 .............E..
|
|
|
|
| page 8 offset 28672
|
|
|
|
| 0: 6f ee cd e1 f1 ee 1a ca be ed ee ec de ac f1 cb o...............
|
|
|
|
| 16: f1 ee 1a ce de ee f1 ee 0a cc de ed ae 90 87 88 ................
|
|
|
|
| 32: ec 5e dc ec fc 11 72 32 75 0a da be ec ed eb de .^....r2u.......
|
|
|
|
| 48: ce c1 aa e0 ae ec 1f c1 ee 99 c2 aa e0 a9 ad 15 ................
|
|
|
|
| 64: 0e ec ab ef 1e e0 48 ad 15 04 24 80 00 00 00 00 ......H...$.....
|
|
|
|
| 80: 00 00 00 00 e0 00 00 00 04 2c 80 00 10 42 4e c1 .........,...BN.
|
|
|
|
| 96: 20 4b 45 59 2c 6e 6f 64 65 6e 6f 2c 61 30 29 46 KEY,nodeno,a0)F
|
|
|
|
| 112: 02 06 17 11 11 08 7b 74 61 62 6c 65 74 31 74 31 .......tablet1t1
|
|
|
|
| 128: 43 52 45 41 54 e1 ec eb ea eb eb ac ee ce be de CREAT...........
|
|
|
|
| 144: ee f1 ee 1a ca ba de 47 80 30 00 14 90 47 70 30 .......G.0...Gp0
|
|
|
|
| 160: 00 11 60 47 60 30 00 15 f0 47 50 30 00 10 f0 47 ..`G`0...GP0...G
|
|
|
|
| 176: 40 30 00 11 f0 47 45 20 30 00 11 d0 45 10 30 00 @0...GE 0...E.0.
|
|
|
|
| 192: 12 10 45 00 30 00 14 e0 44 f0 30 00 11 e0 44 e0 ..E.0...D.0...D.
|
|
|
|
| 208: 30 00 12 a0 44 d0 30 00 15 e0 44 c0 30 00 10 40 0...D.0...D.0..@
|
|
|
|
| 224: 44 b0 30 00 15 10 44 a0 30 00 14 c0 44 90 30 00 D.0...D.0...D.0.
|
|
|
|
| 240: 16 20 44 80 30 00 52 45 41 54 45 20 54 41 42 4c . D.0.REATE TABL
|
|
|
|
| 256: 45 20 27 74 31 5f 63 6f 6e 74 65 6e 74 27 28 69 E 't1_content'(i
|
|
|
|
| 272: 64 20 49 4e 54 45 47 45 52 20 50 52 49 4d 41 52 d INTEGER PRIMAR
|
|
|
|
| 288: 59 20 4b 45 59 2c 20 63 30 29 69 03 07 17 19 19 Y KEY, c0)i.....
|
|
|
|
| 304: 01 81 2d 74 61 62 6c 65 74 31 5f 69 64 78 74 31 ..-tablet1_idxt1
|
|
|
|
| 320: 5f 69 64 78 03 43 52 45 41 54 45 20 54 41 42 4c _idx.CREATE TABL
|
|
|
|
| 336: 45 20 27 70 31 5f 69 64 78 03 6e 69 6d 03 03 03 E 'p1_idx.nim...
|
|
|
|
| 352: 00 01 03 73 73 65 03 05 0b 00 02 01 74 03 08 0b ...sse......t...
|
|
|
|
| 368: 00 01 01 74 03 02 09 00 01 01 75 03 06 04 00 01 ...t......u.....
|
|
|
|
| 384: 01 78 03 04 05 00 02 07 63 65 70 74 65 75 72 03 .x......cepteur.
|
|
|
|
| 400: 07 02 00 02 0a 65 72 63 69 74 61 74 69 6f 6e 03 .....ercitation.
|
|
|
|
| 416: 03 09 00 00 06 66 75 67 69 61 74 03 06 05 00 00 .....fugiat.....
|
|
|
|
| 432: 02 69 64 03 08 0a 00 01 01 6e 07 05 06 04 00 03 .id......n......
|
|
|
|
| 448: 03 00 02 08 63 69 64 69 64 75 6e 74 03 02 06 00 ....cididunt....
|
|
|
|
| 464: 01 04 70 73 75 6d 03 01 03 00 01 04 72 75 72 65 ..psum......rure
|
|
|
|
| 480: 03 05 04 00 00 06 6c 61 62 6f 72 65 03 02 08 00 ......labore....
|
|
|
|
| 496: 05 02 69 73 03 03 0b 00 05 02 75 6d 03 08 0c 00 ..is......um....
|
|
|
|
| 512: 01 04 6f 72 65 6d 03 01 02 00 00 05 6d 61 67 6e ..orem......magn
|
|
|
|
| 528: 61 03 02 0b 00 01 04 69 6e 69 6d 03 03 05 00 01 a......inim.....
|
|
|
|
| 544: 05 6f 6c 6c 69 74 03 08 08 00 00 04 6e 69 73 69 .ollit......nisi
|
|
|
|
| 560: 03 04 02 00 01 02 6f 6e 03 07 06 00 02 05 73 74 ......on......st
|
|
|
|
| 576: 72 75 64 03 03 08 00 01 04 75 6c 6c 61 03 06 06 rud......ulla...
|
|
|
|
| 592: 00 00 08 6f 63 63 61 65 63 61 74 03 07 04 00 01 ...occaecat.....
|
|
|
|
| 608: 06 66 66 69 63 69 61 03 08 06 00 00 08 70 61 72 .fficia......par
|
|
|
|
| 624: 69 61 74 75 72 03 06 07 00 01 07 72 6f ed ce de iatur......ro...
|
|
|
|
| 640: 69 64 65 6e 74 03 07 07 00 00 03 71 75 69 03 08 ident......qui..
|
|
|
|
| 656: 05 00 03 01 73 03 03 07 00 00 0d 72 65 70 72 65 ....s......repre
|
|
|
|
| 672: 68 65 6e 64 65 72 69 74 03 05 07 00 00 03 73 65 henderit......se
|
|
|
|
| 688: 64 03 02 02 00 01 03 69 6e 74 03 07 03 00 02 01 d......int......
|
|
|
|
| 704: 74 03 01 05 00 01 03 75 6e 74 03 08 02 00 00 06 t......unt......
|
|
|
|
| 720: 74 65 6d 70 6f 72 03 02 05 00 00 07 75 6c 6c 61 tempor......ulla
|
|
|
|
| 736: 6d 63 6f 03 03 0a 00 01 01 74 09 02 07 00 01 02 mco......t......
|
|
|
|
| 752: 00 01 03 00 00 05 76 65 6c 69 74 03 05 0a 00 02 ......velit.....
|
|
|
|
| 768: 04 6e 69 61 6d 03 03 06 00 01 08 6f 6c 75 70 74 .niam......olupt
|
|
|
|
| 784: 61 74 65 03 05 09 00 0a 00 00 00 03 0f eb 00 0f ate.............
|
|
|
|
| 800: fb 0f f3 0f eb 00 00 00 00 00 00 00 00 00 00 00 ................
|
|
|
|
| end crash-04bb6e7c811ce9.db
|
|
|
|
}]} {}
|
|
|
|
|
|
|
|
do_catchsql_test 7.1 {
|
|
|
|
SELECT matchinfo(t1,'y') FROM t1 WHERE t1 MATCH 'e*';
|
|
|
|
} {1 {database disk image is malformed}}
|
|
|
|
|
2019-01-14 18:09:00 +03:00
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
reset_db
|
|
|
|
do_test 8.0 {
|
|
|
|
sqlite3 db {}
|
|
|
|
db deserialize [decode_hexdb {
|
|
|
|
| size 28672 pagesize 4096 filename crash-7948058d822acb.db
|
|
|
|
| page 1 offset 0
|
|
|
|
| 0: 53 51 4c 69 74 65 20 66 6f 72 6d 61 74 20 33 00 SQLite format 3.
|
|
|
|
| 16: 10 00 01 01 00 40 20 20 00 00 00 00 00 00 00 07 .....@ ........
|
|
|
|
| 32: 00 00 00 00 00 00 00 00 00 00 00 06 00 00 00 04 ................
|
|
|
|
| 48: 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 00 ................
|
|
|
|
| 96: 00 00 00 00 0d 0e ef 00 07 0d 4d 00 0f bd 0f 5f ..........M...._
|
|
|
|
| 112: 0e f7 0e 06 0e bc 0d a4 0d 4d 00 00 00 00 00 00 .........M......
|
|
|
|
| 3392: 00 00 00 00 00 00 00 00 00 00 00 00 00 55 07 07 .............U..
|
|
|
|
| 3408: 17 1b 1b 01 81 01 74 61 62 6c 65 74 31 5f 73 74 ......tablet1_st
|
|
|
|
| 3424: 61 74 74 31 5f 73 74 61 74 07 43 52 45 41 54 45 att1_stat.CREATE
|
|
|
|
| 3440: 20 54 41 42 4c 45 20 27 74 31 5f 73 74 61 74 27 TABLE 't1_stat'
|
|
|
|
| 3456: 28 69 64 20 49 4e 54 45 47 45 52 20 50 52 49 4d (id INTEGER PRIM
|
|
|
|
| 3472: 41 52 59 20 4b 45 59 2c 20 76 61 6c 75 65 20 42 ARY KEY, value B
|
|
|
|
| 3488: 4c 4f 42 29 60 06 07 17 21 21 01 81 0b 74 61 62 LOB)`...!!...tab
|
|
|
|
| 3504: 6c 65 74 31 5f 64 6f 63 73 69 7a 65 74 31 5f 64 let1_docsizet1_d
|
|
|
|
| 3520: 6f 63 73 69 7a 65 06 43 52 45 41 54 45 20 54 41 ocsize.CREATE TA
|
|
|
|
| 3536: 42 4c 45 20 27 74 31 5f 64 6f 63 73 69 7a 65 27 BLE 't1_docsize'
|
|
|
|
| 3552: 28 64 6f 63 69 64 20 49 4e 54 45 47 45 52 20 50 (docid INTEGER P
|
|
|
|
| 3568: 52 49 4d 41 52 59 20 4b 45 59 2c 20 73 69 7a 65 RIMARY KEY, size
|
|
|
|
| 3584: 20 42 4c 4f 42 29 81 33 04 07 17 1f 1f 01 82 35 BLOB).3.......5
|
|
|
|
| 3600: 74 61 62 6c 65 74 31 5f 73 65 67 64 69 72 74 31 tablet1_segdirt1
|
|
|
|
| 3616: 5f 73 65 67 64 69 72 04 43 52 45 41 54 45 20 54 _segdir.CREATE T
|
|
|
|
| 3632: 41 42 4c 45 20 27 74 31 5f 73 65 67 64 69 72 27 ABLE 't1_segdir'
|
|
|
|
| 3648: 28 6c 65 76 65 6c 20 49 4e 54 45 47 45 52 2c 69 (level INTEGER,i
|
|
|
|
| 3664: 64 78 20 49 4e 54 45 47 45 52 2c 73 74 61 72 74 dx INTEGER,start
|
|
|
|
| 3680: 5f 62 6c 6f 63 6b 20 49 4e 54 45 47 45 52 2c 6c _block INTEGER,l
|
|
|
|
| 3696: 65 61 76 65 73 5f 65 6e 64 5f 62 6c 6f 63 6b 20 eaves_end_block
|
|
|
|
| 3712: 49 4e 54 45 47 45 52 2c 65 6e 64 5f 62 6c 6f 63 INTEGER,end_bloc
|
|
|
|
| 3728: 6b 20 49 4e 54 45 47 45 52 2c 72 6f 6f 74 20 42 k INTEGER,root B
|
|
|
|
| 3744: 4c 4f 42 2c 50 52 49 4d 41 52 59 20 4b 45 59 28 LOB,PRIMARY KEY(
|
|
|
|
| 3760: 6c 65 76 65 6c 2c 20 69 64 78 29 29 31 05 06 17 level, idx))1...
|
|
|
|
| 3776: 45 1f 01 00 69 6e 64 65 78 73 71 6c 69 74 65 5f E...indexsqlite_
|
|
|
|
| 3792: 61 75 74 6f 69 6e 64 65 78 5f 74 31 5f 73 65 67 autoindex_t1_seg
|
|
|
|
| 3808: 64 69 72 5f 31 74 31 5f 73 65 67 64 69 72 05 00 dir_1t1_segdir..
|
|
|
|
| 3824: 00 00 08 00 00 00 00 66 03 07 17 23 23 01 81 13 .......f...##...
|
|
|
|
| 3840: 74 61 62 6c 65 74 31 5f 73 65 67 6d 65 6e 74 73 tablet1_segments
|
|
|
|
| 3856: 74 31 5f 73 65 67 6d 65 6e 74 73 03 43 52 45 41 t1_segments.CREA
|
|
|
|
| 3872: 54 45 20 54 41 42 4c 45 20 27 74 31 5f 73 65 67 TE TABLE 't1_seg
|
|
|
|
| 3888: 6d 65 6e 74 73 27 28 62 6c 6f 63 6b 69 64 20 49 ments'(blockid I
|
|
|
|
| 3904: 4e 54 45 47 45 52 20 50 52 49 4d 41 52 59 20 4b NTEGER PRIMARY K
|
|
|
|
| 3920: 45 59 2c 20 62 6c 6f 63 6b 20 42 4c 4f 42 29 5c EY, block BLOB).
|
|
|
|
| 3936: 02 07 17 21 21 01 81 03 74 61 62 6c 65 74 31 5f ...!!...tablet1_
|
|
|
|
| 3952: 63 6f 6e 74 65 6e 74 74 31 5f 63 6f 6e 74 65 6e contentt1_conten
|
|
|
|
| 3968: 74 02 43 52 45 41 54 45 20 54 41 42 4c 45 20 27 t.CREATE TABLE '
|
|
|
|
| 3984: 74 31 5f 63 6f 6e 74 65 6e 74 27 28 64 6f 63 69 t1_content'(doci
|
|
|
|
| 4000: 64 20 49 4e 54 45 47 45 52 20 50 52 49 4d 41 52 d INTEGER PRIMAR
|
|
|
|
| 4016: 59 20 4b 45 59 2c 20 27 63 30 61 27 29 41 01 06 Y KEY, 'c0a')A..
|
|
|
|
| 4032: 17 11 11 08 71 74 61 62 6c 65 74 31 74 31 43 52 ....qtablet1t1CR
|
|
|
|
| 4048: 45 41 54 45 20 56 49 52 54 55 41 4c 20 54 41 42 EATE VIRTUAL TAB
|
|
|
|
| 4064: 4c 45 20 74 31 20 55 53 49 4e 47 20 66 74 73 34 LE t1 USING fts4
|
|
|
|
| 4080: 28 61 2c 70 72 65 66 69 78 3d 27 31 2c 32 27 29 (a,prefix='1,2')
|
|
|
|
| page 2 offset 4096
|
|
|
|
| 0: 0d 00 00 00 08 0e 1f 00 0f c4 0f 7c 0f 34 0f 07 ...........|.4..
|
|
|
|
| 16: 0e c3 0e 97 0e 63 0e 1f 00 00 00 00 00 00 00 00 .....c..........
|
|
|
|
| 3600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 42 ...............B
|
|
|
|
| 3616: 08 04 00 81 09 73 75 6e 74 20 69 6e 20 63 75 6c .....sunt in cul
|
|
|
|
| 3632: 70 61 20 71 75 69 20 6f 66 66 69 63 69 61 20 64 pa qui officia d
|
|
|
|
| 3648: 65 73 65 72 75 6e 74 20 6d 6f 6c 6c 69 74 20 61 eserunt mollit a
|
|
|
|
| 3664: 6e 69 6d 20 69 64 20 65 73 74 20 6c 61 62 6f 72 nim id est labor
|
|
|
|
| 3680: 75 6d 2e 32 07 03 00 6b 45 78 63 65 70 74 65 75 um.2...kExcepteu
|
|
|
|
| 3696: 72 20 73 69 6e 74 20 6f 63 63 61 65 63 67 42 06 r sint occaecgB.
|
|
|
|
| 3712: 37 57 06 96 46 17 46 17 42 06 e6 f6 e2 07 07 26 7W..F.F.B......&
|
|
|
|
| 3728: f6 96 46 56 e7 42 c2 a0 60 30 05 b6 36 96 c6 c7 ..FV.B..`0..6...
|
|
|
|
| 3744: 56 d2 06 46 f6 c6 f7 26 52 06 57 52 06 67 56 7c V..F...&R.WR.gV|
|
|
|
|
| 3760: 65 3f 04 20 6e 75 6c 6c 61 20 70 61 72 69 61 74 e?. nulla pariat
|
|
|
|
| 3776: 75 72 2e 42 05 04 00 81 09 44 75 69 73 20 61 75 ur.B.....Duis au
|
|
|
|
| 3792: 74 65 20 69 72 75 72 65 20 64 6f 6c 6f 72 20 69 te irure dolor i
|
|
|
|
| 3808: 6e 20 72 65 70 72 65 68 65 6e 64 65 72 69 74 20 n reprehenderit
|
|
|
|
| 3824: 69 6e 20 76 6f 6c 75 70 74 61 74 65 20 76 65 6c in voluptate vel
|
|
|
|
| 3840: 69 74 20 65 73 73 65 2b 04 03 00 5d 6e 69 73 69 it esse+...]nisi
|
|
|
|
| 3856: 20 75 74 20 61 7c 69 71 75 69 70 20 65 78 20 65 ut a|iquip ex e
|
|
|
|
| 3872: 61 20 63 6f 6d 6d 6f 64 6f 20 63 6f 6e 73 65 71 a commodo conseq
|
|
|
|
| 3888: 75 61 74 2e 46 03 04 00 81 11 55 74 20 65 6e 69 uat.F.....Ut eni
|
|
|
|
| 3904: 6d 20 61 64 20 6d 69 6e 69 6d 20 76 65 6e 69 61 m ad minim venia
|
|
|
|
| 3920: 6d 2c 20 71 75 69 73 20 6e 6f 73 74 72 75 64 20 m, quis nostrud
|
|
|
|
| 3936: 65 78 65 72 63 69 74 61 74 69 6f 6e 20 75 6c 6c exercitation ull
|
|
|
|
| 3952: 61 6d 63 6f 20 6c 61 62 6f 72 69 73 46 02 04 00 amco laborisF...
|
|
|
|
| 3968: 81 11 73 65 64 20 64 6f 20 65 69 75 73 6d 6f 64 ..sed do eiusmod
|
|
|
|
| 3984: 20 74 65 6d 70 6f 72 20 69 6e 63 69 64 69 64 75 tempor incididu
|
|
|
|
| 4000: 6e 74 20 75 74 20 6c 61 62 6f 72 65 20 65 74 20 nt ut labore et
|
|
|
|
| 4016: 64 6f 6c 6f 72 65 20 6d 61 67 6e 61 20 61 6c 69 dolore magna ali
|
|
|
|
| 4032: 71 75 61 2e 3a 01 03 00 7b 4c 6f 72 65 6d 20 69 qua.:....Lorem i
|
|
|
|
| 4048: 70 73 75 6d 20 64 6f 6c 6f 72 20 73 69 74 20 61 psum dolor sit a
|
|
|
|
| 4064: 6d 65 74 2c 20 63 6f 6e 73 65 63 74 65 74 75 72 met, consectetur
|
|
|
|
| 4080: 20 61 64 69 70 69 73 63 69 6e 67 20 65 6c 69 74 adipiscing elit
|
|
|
|
| page 3 offset 8192
|
|
|
|
| 0: 0d 00 00 00 00 10 00 00 00 00 00 00 00 00 00 00 ................
|
|
|
|
| page 4 offset 12288
|
|
|
|
| 0: 0d 00 00 00 03 0a a6 00 0d 57 0c 4a 0a a6 00 00 .........W.J....
|
|
|
|
| 2720: 00 00 00 00 00 00 83 21 03 08 02 08 08 08 17 86 .......!........
|
|
|
|
| 2736: 30 08 00 30 20 34 30 32 00 02 61 64 06 01 08 00 0..0 402..ad....
|
|
|
|
| 2752: 02 04 00 01 01 6c 06 02 0c 00 02 04 00 01 01 6d .....l.........m
|
|
|
|
| 2768: 03 01 06 00 01 01 6e 03 08 00 00 91 01 75 03 05 ......n......u..
|
|
|
|
| 2784: 03 00 00 02 63 69 03 06 02 00 01 01 6f 07 01 07 ....ci......o...
|
|
|
|
| 2800: 00 03 07 03 00 01 01 75 06 07 05 00 01 04 00 00 .......u........
|
|
|
|
| 2816: 02 64 65 03 08 07 00 01 01 6f 0d 01 04 00 01 03 .de......o......
|
|
|
|
| 2832: 09 00 03 05 00 01 03 00 01 01 75 03 05 02 00 00 ..........u.....
|
|
|
|
| 2848: 02 65 61 03 04 06 00 01 01 69 03 02 04 00 01 01 .ea......i......
|
|
|
|
| 2864: 6c 03 01 09 00 01 01 6e 30 03 03 00 01 01 73 06 l......n0.....s.
|
|
|
|
| 2880: 05 0b 00 03 0b 00 01 01 74 03 02 09 00 01 01 75 ........t......u
|
|
|
|
| 2896: 03 06 04 00 01 01 78 09 03 09 00 01 05 00 03 02 ......x.........
|
|
|
|
| 2912: 00 00 02 66 75 03 06 05 00 00 02 69 64 03 08 0a ...fu......id...
|
|
|
|
| 2928: 00 01 01 6e 0a 02 06 00 03 06 04 00 03 03 00 01 ...n............
|
|
|
|
| 2944: 01 70 03 01 03 00 01 01 72 03 05 04 00 00 02 6c .p......r......l
|
|
|
|
| 2960: 61 09 02 08 00 01 0b 00 05 0c 00 01 01 6f 03 01 a............o..
|
|
|
|
| 2976: 02 00 00 02 6d 61 03 02 0b 00 01 01 69 03 03 05 ....ma......i...
|
|
|
|
| 2992: 00 01 01 6f 03 08 08 00 00 02 6e 69 03 04 02 00 ...o......ni....
|
|
|
|
| 3008: 01 01 6f 06 03 08 00 04 06 00 01 01 75 03 06 06 ..o.........u...
|
|
|
|
| 3024: 00 00 02 6f 63 03 07 04 00 01 01 66 03 08 06 00 ...oc......f....
|
|
|
|
| 3040: 00 02 70 61 03 06 07 00 01 01 72 03 07 07 00 00 ..pa......r.....
|
|
|
|
| 3056: 02 71 75 06 03 07 00 05 05 00 00 02 72 65 03 05 .qu.........re..
|
|
|
|
| 3072: 07 00 00 02 73 65 03 02 02 00 01 01 69 06 01 05 ....se......i...
|
|
|
|
| 3088: 00 06 03 00 01 01 75 03 08 02 00 00 02 74 65 03 ......u......te.
|
|
|
|
| 3104: 02 05 00 00 02 75 6c 03 03 0a 00 01 01 74 09 02 .....ul......t..
|
|
|
|
| 3120: 07 00 01 02 00 01 03 00 00 02 76 65 06 03 06 00 ..........ve....
|
|
|
|
| 3136: 02 0a 00 01 01 6f 03 05 09 00 82 0a 02 08 02 08 .....o..........
|
|
|
|
| 3152: 08 08 17 84 02 04 00 30 20 32 35 31 00 01 61 13 .......0 251..a.
|
|
|
|
| 3168: 01 06 04 00 01 0c 00 01 04 00 01 04 00 01 03 00 ................
|
|
|
|
| 3184: 03 09 00 00 01 63 10 01 07 00 03 07 03 00 02 02 .....c..........
|
|
|
|
| 3200: 00 01 05 00 01 04 00 00 01 64 11 01 04 00 01 03 .........d......
|
|
|
|
| 3216: 09 00 03 02 05 00 01 03 00 02 07 00 00 01 65 1b ..............e.
|
|
|
|
| 3232: 01 09 00 01 04 07 00 01 03 00 80 00 15 03 00 01 ................
|
|
|
|
| 3248: 0b 00 01 04 00 01 02 00 01 0b 00 00 01 66 03 06 .............f..
|
|
|
|
| 3264: 05 00 00 01 69 0f 01 03 00 01 06 00 03 04 04 04 ....i...........
|
|
|
|
| 3280: 00 03 03 09 00 00 01 6c 0c 01 02 00 01 08 00 01 .......l........
|
|
|
|
| 3296: 0b 00 05 0c 00 00 01 6d 09 02 0b 00 01 05 00 05 .......m........
|
|
|
|
| 3312: 08 00 00 01 6e 0c 03 08 00 01 02 00 02 06 00 01 ....n...........
|
|
|
|
| 3328: 06 00 00 01 6f 06 07 04 00 01 06 00 00 01 70 06 ....o.........p.
|
|
|
|
| 3344: 06 07 00 01 07 00 00 01 71 06 03 07 00 05 05 00 ........q.......
|
|
|
|
| 3360: 00 01 72 03 05 07 00 00 01 73 0c 01 05 00 01 02 ..r......s......
|
|
|
|
| 3376: 00 05 03 00 01 02 00 00 01 74 03 02 05 00 00 01 .........t......
|
|
|
|
| 3392: 75 0a 02 07 00 01 02 0a 00 01 03 00 00 01 76 07 u.............v.
|
|
|
|
| 3408: 03 06 00 02 09 03 00 85 26 01 08 08 08 08 08 17 ........&.......
|
|
|
|
| 3424: 8a 3e 30 20 36 36 35 00 02 61 64 03 03 04 00 02 .>0 665..ad.....
|
|
|
|
| 3440: 08 69 70 69 73 63 69 6e 67 03 01 08 00 01 05 6c .ipiscing......l
|
|
|
|
| 3456: 69 71 75 61 03 02 0c 00 05 02 69 70 03 04 04 00 iqua......ip....
|
|
|
|
| 3472: 01 03 6d 65 74 03 01 06 00 01 03 6e 69 6d 03 08 ..met......nim..
|
|
|
|
| 3488: 09 00 01 03 75 74 65 03 05 03 00 00 06 63 69 6c ....ute......cil
|
|
|
|
| 3504: 6c 75 6d 03 06 02 00 01 06 6f 6d 6d 6f 64 6f 03 lum......ommodo.
|
|
|
|
| 3520: 04 07 00 02 09 6e 73 65 63 74 65 74 75 72 03 01 .....nsectetur..
|
|
|
|
| 3536: 07 00 05 04 71 75 61 74 03 04 08 00 01 04 75 6c ....quat......ul
|
|
|
|
| 3552: 70 61 03 08 04 00 02 07 70 69 64 61 74 61 74 03 pa......pidatat.
|
|
|
|
| 3568: 07 05 00 00 08 64 65 73 65 72 75 6e 74 03 08 07 .....deserunt...
|
|
|
|
| 3584: 00 01 01 6f 03 02 03 00 02 03 6c 6f 72 06 01 04 ...o......lor...
|
|
|
|
| 3600: 00 40 05 00 05 01 65 06 02 0a 00 04 03 00 01 03 .@....e.........
|
|
|
|
| 3616: 75 69 73 03 05 02 00 00 02 65 61 03 04 06 00 01 uis......ea.....
|
|
|
|
| 3632: 06 69 75 73 6d 6f 64 03 02 04 00 01 03 6c 69 74 .iusmod......lit
|
|
|
|
| 3648: 03 01 09 00 01 03 6e 69 6d 03 03 03 00 01 03 73 ......nim......s
|
|
|
|
| 3664: 73 65 03 05 0b 00 02 01 74 03 08 0b 00 01 01 74 se......t......t
|
|
|
|
| 3680: 03 02 09 00 01 01 75 03 06 04 00 01 01 78 03 04 ......u......x..
|
|
|
|
| 3696: 05 00 02 07 63 65 70 74 65 75 72 03 07 02 00 02 ....cepteur.....
|
|
|
|
| 3712: 0a 65 72 63 69 74 61 74 69 6f 6e 03 03 09 00 00 .ercitation.....
|
|
|
|
| 3728: 06 66 75 67 69 61 74 03 06 05 00 00 02 69 64 03 .fugiat......id.
|
|
|
|
| 3744: 08 0a 00 01 01 6e 07 05 06 04 00 03 03 00 02 08 .....n..........
|
|
|
|
| 3760: 63 69 64 69 64 75 6e 74 03 02 06 00 01 04 70 73 cididunt......ps
|
|
|
|
| 3776: 75 6d 03 01 03 00 01 04 72 75 72 65 03 05 04 00 um......rure....
|
|
|
|
| 3792: 00 06 6c 61 62 6f 72 65 03 02 08 00 05 02 69 73 ..labore......is
|
|
|
|
| 3808: 03 03 0b 00 05 02 75 6d 03 08 0c 00 01 04 6f 72 ......um......or
|
|
|
|
| 3824: 65 6d 03 01 02 00 00 05 6d 61 67 6e 61 03 02 0b em......magna...
|
|
|
|
| 3840: 00 01 04 69 6e 69 6d 03 03 05 00 01 05 6f 6c 6c ...inim......oll
|
|
|
|
| 3856: 69 74 03 08 08 00 00 04 6e 69 73 69 03 04 02 00 it......nisi....
|
|
|
|
| 3872: 01 02 6f 6e 03 07 06 00 02 05 73 74 72 75 64 03 ..on......strud.
|
|
|
|
| 3888: 03 08 00 01 04 75 6c 6c 61 03 06 06 00 00 08 6f .....ulla......o
|
|
|
|
| 3904: 63 63 61 65 63 61 74 03 07 04 00 01 06 66 66 69 ccaecat......ffi
|
|
|
|
| 3920: 63 69 61 03 08 06 00 00 08 70 61 72 69 61 74 75 cia......pariatu
|
|
|
|
| 3936: 72 03 06 07 00 01 07 72 6f 69 64 65 6e 74 03 07 r......roident..
|
|
|
|
| 3952: 07 00 00 03 71 75 69 03 08 05 00 03 01 73 03 03 ....qui......s..
|
|
|
|
| 3968: 07 00 00 0d 72 65 70 72 65 68 65 6e 64 65 72 69 ....reprehenderi
|
|
|
|
| 3984: 74 03 05 07 00 00 03 73 65 64 03 02 02 00 01 03 t......sed......
|
|
|
|
| 4000: 69 6e 74 03 07 03 00 02 01 74 03 01 05 00 01 03 int......t......
|
|
|
|
| 4016: 75 6e 74 03 08 02 00 00 06 74 65 6d 70 6f 72 03 unt......tempor.
|
|
|
|
| 4032: 02 05 00 00 07 75 6c 6c 61 6d 63 6f 03 03 0a 00 .....ullamco....
|
|
|
|
| 4048: 01 01 74 09 02 07 00 01 02 00 01 03 00 00 05 76 ..t............v
|
|
|
|
| 4064: 65 6c 69 74 03 05 0a 00 02 04 6e 69 61 6d 03 03 elit......niam..
|
|
|
|
| 4080: 06 00 01 08 6f 6c 75 70 74 61 74 65 03 05 09 00 ....oluptate....
|
|
|
|
| page 5 offset 16384
|
|
|
|
| 0: 0a 00 00 00 03 0f eb 00 0f fb 0f f3 0f eb 00 00 ................
|
|
|
|
| 4064: 00 00 00 00 00 00 00 00 00 00 00 07 04 02 08 01 ................
|
|
|
|
| 4080: 08 00 03 07 04 02 08 01 04 00 02 04 04 08 08 09 ................
|
|
|
|
| page 6 offset 20480
|
|
|
|
| 0: 0d 00 00 00 08 0f d0 00 0f fa 0f f4 0f ee 0f e8 ................
|
|
|
|
| 16: 0f e2 0f dc 0f d6 0f d0 00 00 00 00 00 00 00 00 ................
|
|
|
|
| 4048: 04 08 03 00 0e 0b 04 07 03 00 0e 06 04 06 03 00 ................
|
|
|
|
| 4064: 0e 06 04 05 03 00 0e 0a 04 04 03 00 0e 07 04 03 ................
|
|
|
|
| 4080: 03 00 0e 0a 04 02 03 00 0e 0b 04 01 03 00 0e 08 ................
|
|
|
|
| page 7 offset 24576
|
|
|
|
| 0: 0d 00 00 00 01 0f f7 00 0f f7 00 00 00 00 00 00 ................
|
|
|
|
| 4080: 00 00 00 00 00 00 00 07 00 03 00 14 08 45 b5 03 .............E..
|
|
|
|
| end crash-7948058d822acb.db
|
|
|
|
}]} {}
|
|
|
|
|
|
|
|
do_catchsql_test 8.1 {
|
|
|
|
SELECT matchinfo(t1,'x') FROM t1 WHERE t1 MATCH 'e*';
|
|
|
|
} {1 {database disk image is malformed}}
|
|
|
|
|
2018-11-03 19:51:30 +03:00
|
|
|
finish_test
|
2019-01-14 18:09:00 +03:00
|
|
|
|
|
|
|
|