Skip to content

Commit 2728ecc

Browse files
Update SQLite to 3.19.3
1 parent b488b6f commit 2728ecc

File tree

8 files changed

+60
-47
lines changed

8 files changed

+60
-47
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ If you need a specific version of SQLite, or specific SQLite compilation options
88

99

1010

11-
**May 27, 2017: Update SQLite to 3.19.2** ([changelog](CHANGELOG.md)).
11+
**Jul 18, 2017: Update SQLite to 3.19.3** ([changelog](CHANGELOG.md)).
1212

1313
**Requirements**: iOS 8.0+ / OSX 10.9+, Xcode 7.3+
1414

15-
**SQLite Included:** **[3.19.2](https://www.sqlite.org/releaselog/3_19_2.html)**
15+
**SQLite Included:** **[3.19.3](https://www.sqlite.org/releaselog/3_19_3.html)**
1616

1717

1818

@@ -65,7 +65,7 @@ There is no need to modify any other files.
6565

6666
#### Compiling a Specific Version of SQLite:
6767

68-
SQLiteLib currently ships with the source for SQLite 3.19.2.
68+
SQLiteLib currently ships with the source for SQLite 3.19.3.
6969

7070
If you'd like to compile a newer (or older) version, the process is simple:
7171

sqlite/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.19.2
1+
3.19.3

sqlite/configure

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.69 for sqlite 3.19.2.
3+
# Generated by GNU Autoconf 2.69 for sqlite 3.19.3.
44
#
55
#
66
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@@ -726,8 +726,8 @@ MAKEFLAGS=
726726
# Identity of this package.
727727
PACKAGE_NAME='sqlite'
728728
PACKAGE_TARNAME='sqlite'
729-
PACKAGE_VERSION='3.19.2'
730-
PACKAGE_STRING='sqlite 3.19.2'
729+
PACKAGE_VERSION='3.19.3'
730+
PACKAGE_STRING='sqlite 3.19.3'
731731
PACKAGE_BUGREPORT=''
732732
PACKAGE_URL=''
733733

@@ -1463,7 +1463,7 @@ if test "$ac_init_help" = "long"; then
14631463
# Omit some internal or obsolete options to make the list less imposing.
14641464
# This message is too long to be a string in the A/UX 3.1 sh.
14651465
cat <<_ACEOF
1466-
\`configure' configures sqlite 3.19.2 to adapt to many kinds of systems.
1466+
\`configure' configures sqlite 3.19.3 to adapt to many kinds of systems.
14671467
14681468
Usage: $0 [OPTION]... [VAR=VALUE]...
14691469
@@ -1528,7 +1528,7 @@ fi
15281528

15291529
if test -n "$ac_init_help"; then
15301530
case $ac_init_help in
1531-
short | recursive ) echo "Configuration of sqlite 3.19.2:";;
1531+
short | recursive ) echo "Configuration of sqlite 3.19.3:";;
15321532
esac
15331533
cat <<\_ACEOF
15341534
@@ -1652,7 +1652,7 @@ fi
16521652
test -n "$ac_init_help" && exit $ac_status
16531653
if $ac_init_version; then
16541654
cat <<\_ACEOF
1655-
sqlite configure 3.19.2
1655+
sqlite configure 3.19.3
16561656
generated by GNU Autoconf 2.69
16571657
16581658
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2071,7 +2071,7 @@ cat >config.log <<_ACEOF
20712071
This file contains any messages produced by compilers while
20722072
running configure, to aid debugging if configure makes a mistake.
20732073
2074-
It was created by sqlite $as_me 3.19.2, which was
2074+
It was created by sqlite $as_me 3.19.3, which was
20752075
generated by GNU Autoconf 2.69. Invocation command line was
20762076
20772077
$ $0 $@
@@ -11356,7 +11356,7 @@ fi
1135611356
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to support MEMSYS5" >&5
1135711357
$as_echo_n "checking whether to support MEMSYS5... " >&6; }
1135811358
if test "${enable_memsys5}" = "yes"; then
11359-
OPT_FEATURE_FLAGS="$(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_MEMSYS5"
11359+
OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_MEMSYS5"
1136011360
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
1136111361
$as_echo "yes" >&6; }
1136211362
else
@@ -11373,7 +11373,7 @@ fi
1137311373
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to support MEMSYS3" >&5
1137411374
$as_echo_n "checking whether to support MEMSYS3... " >&6; }
1137511375
if test "${enable_memsys3}" = "yes" -a "${enable_memsys5}" = "no"; then
11376-
OPT_FEATURE_FLAGS="$(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_MEMSYS3"
11376+
OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_MEMSYS3"
1137711377
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
1137811378
$as_echo "yes" >&6; }
1137911379
else
@@ -11391,7 +11391,7 @@ else
1139111391
fi
1139211392

1139311393
if test "${enable_fts3}" = "yes" ; then
11394-
OPT_FEATURE_FLAGS="$(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_FTS3"
11394+
OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_FTS3"
1139511395
fi
1139611396
# Check whether --enable-fts4 was given.
1139711397
if test "${enable_fts4+set}" = set; then :
@@ -11401,7 +11401,7 @@ else
1140111401
fi
1140211402

1140311403
if test "${enable_fts4}" = "yes" ; then
11404-
OPT_FEATURE_FLAGS="$(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_FTS4"
11404+
OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_FTS4"
1140511405
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing log" >&5
1140611406
$as_echo_n "checking for library containing log... " >&6; }
1140711407
if ${ac_cv_search_log+:} false; then :
@@ -11467,7 +11467,7 @@ else
1146711467
fi
1146811468

1146911469
if test "${enable_fts5}" = "yes" ; then
11470-
OPT_FEATURE_FLAGS="$(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_FTS5"
11470+
OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_FTS5"
1147111471
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing log" >&5
1147211472
$as_echo_n "checking for library containing log... " >&6; }
1147311473
if ${ac_cv_search_log+:} false; then :
@@ -11536,7 +11536,7 @@ else
1153611536
fi
1153711537

1153811538
if test "${enable_json1}" = "yes" ; then
11539-
OPT_FEATURE_FLAGS="$(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_JSON1"
11539+
OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_JSON1"
1154011540
fi
1154111541

1154211542
#########
@@ -11549,7 +11549,7 @@ else
1154911549
fi
1155011550

1155111551
if test "${enable_rtree}" = "yes" ; then
11552-
OPT_FEATURE_FLAGS="$(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_RTREE"
11552+
OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_RTREE"
1155311553
fi
1155411554

1155511555
#########
@@ -11562,12 +11562,12 @@ else
1156211562
fi
1156311563

1156411564
if test "${enable_session}" = "yes" ; then
11565-
OPT_FEATURE_FLAGS="$(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_SESSION"
11566-
OPT_FEATURE_FLAGS="$(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_PREUPDATE_HOOK"
11565+
OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_SESSION"
11566+
OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_PREUPDATE_HOOK"
1156711567
fi
1156811568

1156911569
#########
11570-
# attempt to duplicate any OMITS and ENABLES into the $(OPT_FEATURE_FLAGS) parameter
11570+
# attempt to duplicate any OMITS and ENABLES into the ${OPT_FEATURE_FLAGS} parameter
1157111571
for option in $CFLAGS $CPPFLAGS
1157211572
do
1157311573
case $option in
@@ -12151,7 +12151,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
1215112151
# report actual input values of CONFIG_FILES etc. instead of their
1215212152
# values after options handling.
1215312153
ac_log="
12154-
This file was extended by sqlite $as_me 3.19.2, which was
12154+
This file was extended by sqlite $as_me 3.19.3, which was
1215512155
generated by GNU Autoconf 2.69. Invocation command line was
1215612156
1215712157
CONFIG_FILES = $CONFIG_FILES
@@ -12217,7 +12217,7 @@ _ACEOF
1221712217
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1221812218
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
1221912219
ac_cs_version="\\
12220-
sqlite config.status 3.19.2
12220+
sqlite config.status 3.19.3
1222112221
configured by $0, generated by GNU Autoconf 2.69,
1222212222
with options \\"\$ac_cs_config\\"
1222312223

sqlite/configure.ac

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ AC_ARG_ENABLE(memsys5,
596596
[enable_memsys5=yes],[enable_memsys5=no])
597597
AC_MSG_CHECKING([whether to support MEMSYS5])
598598
if test "${enable_memsys5}" = "yes"; then
599-
OPT_FEATURE_FLAGS="$(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_MEMSYS5"
599+
OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_MEMSYS5"
600600
AC_MSG_RESULT([yes])
601601
else
602602
AC_MSG_RESULT([no])
@@ -606,7 +606,7 @@ AC_ARG_ENABLE(memsys3,
606606
[enable_memsys3=yes],[enable_memsys3=no])
607607
AC_MSG_CHECKING([whether to support MEMSYS3])
608608
if test "${enable_memsys3}" = "yes" -a "${enable_memsys5}" = "no"; then
609-
OPT_FEATURE_FLAGS="$(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_MEMSYS3"
609+
OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_MEMSYS3"
610610
AC_MSG_RESULT([yes])
611611
else
612612
AC_MSG_RESULT([no])
@@ -618,20 +618,20 @@ AC_ARG_ENABLE(fts3, AC_HELP_STRING([--enable-fts3],
618618
[Enable the FTS3 extension]),
619619
[enable_fts3=yes],[enable_fts3=no])
620620
if test "${enable_fts3}" = "yes" ; then
621-
OPT_FEATURE_FLAGS="$(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_FTS3"
621+
OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_FTS3"
622622
fi
623623
AC_ARG_ENABLE(fts4, AC_HELP_STRING([--enable-fts4],
624624
[Enable the FTS4 extension]),
625625
[enable_fts4=yes],[enable_fts4=no])
626626
if test "${enable_fts4}" = "yes" ; then
627-
OPT_FEATURE_FLAGS="$(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_FTS4"
627+
OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_FTS4"
628628
AC_SEARCH_LIBS([log],[m])
629629
fi
630630
AC_ARG_ENABLE(fts5, AC_HELP_STRING([--enable-fts5],
631631
[Enable the FTS5 extension]),
632632
[enable_fts5=yes],[enable_fts5=no])
633633
if test "${enable_fts5}" = "yes" ; then
634-
OPT_FEATURE_FLAGS="$(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_FTS5"
634+
OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_FTS5"
635635
AC_SEARCH_LIBS([log],[m])
636636
fi
637637

@@ -641,7 +641,7 @@ AC_ARG_ENABLE(json1, AC_HELP_STRING([--enable-json1],
641641
[Enable the JSON1 extension]),
642642
[enable_json1=yes],[enable_json1=no])
643643
if test "${enable_json1}" = "yes" ; then
644-
OPT_FEATURE_FLAGS="$(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_JSON1"
644+
OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_JSON1"
645645
fi
646646

647647
#########
@@ -650,7 +650,7 @@ AC_ARG_ENABLE(rtree, AC_HELP_STRING([--enable-rtree],
650650
[Enable the RTREE extension]),
651651
[enable_rtree=yes],[enable_rtree=no])
652652
if test "${enable_rtree}" = "yes" ; then
653-
OPT_FEATURE_FLAGS="$(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_RTREE"
653+
OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_RTREE"
654654
fi
655655

656656
#########
@@ -659,12 +659,12 @@ AC_ARG_ENABLE(session, AC_HELP_STRING([--enable-session],
659659
[Enable the SESSION extension]),
660660
[enable_session=yes],[enable_session=no])
661661
if test "${enable_session}" = "yes" ; then
662-
OPT_FEATURE_FLAGS="$(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_SESSION"
663-
OPT_FEATURE_FLAGS="$(OPT_FEATURE_FLAGS) -DSQLITE_ENABLE_PREUPDATE_HOOK"
662+
OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_SESSION"
663+
OPT_FEATURE_FLAGS="${OPT_FEATURE_FLAGS} -DSQLITE_ENABLE_PREUPDATE_HOOK"
664664
fi
665665

666666
#########
667-
# attempt to duplicate any OMITS and ENABLES into the $(OPT_FEATURE_FLAGS) parameter
667+
# attempt to duplicate any OMITS and ENABLES into the ${OPT_FEATURE_FLAGS} parameter
668668
for option in $CFLAGS $CPPFLAGS
669669
do
670670
case $option in

sqlite/manifest

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
C Version\s3.19.2
2-
D 2017-05-25T16:50:27.649
1+
C Version\s3.19.3
2+
D 2017-06-08T14:26:16.283
33
F Makefile.in 1cc758ce3374a32425e4d130c2fe7b026b20de5b8843243de75f087c0a2661fb
44
F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434
55
F Makefile.msc 8eeb80162074004e906b53d7340a12a14c471a83743aab975947e95ce061efcc
66
F README.md 2b15fae33852f2f53996774c21fb41e1d94181c4401a0e43ac93e11f2cc901b9
7-
F VERSION 10a1d396b8a19db3c3cc6c7b909be2cf7ad97c517b4f00af363506fd85aab713
7+
F VERSION 6035ef7e627075d9a9194304c3a07acb2736a0abd0dd980a7ea75a3a45719e86
88
F aclocal.m4 a5c22d164aff7ed549d53a90fa56d56955281f50
99
F art/sqlite370.eps aa97a671332b432a54e1d74ff5e8775be34200c2
1010
F art/sqlite370.ico af56c1d00fee7cd4753e8631ed60703ed0fc6e90
@@ -30,8 +30,8 @@ F autoconf/tea/win/rules.vc c511f222b80064096b705dbeb97060ee1d6b6d63
3030
F config.guess 226d9a188c6196f3033ffc651cbc9dcee1a42977
3131
F config.h.in 6376abec766e9a0785178b1823b5a587e9f1ccbc
3232
F config.sub 9ebe4c3b3dab6431ece34f16828b594fb420da55
33-
F configure 1b0309062481dbde6278cb870f1680c81c65202d0bfde469f81c7e22397d6f23 x
34-
F configure.ac 901e8db2c211e8b655e51ee24f2b8faa33407acde87effc47f70380f3b04e452
33+
F configure 1a94740b2ac20f3b865689d32746ade6eee7974282170b0ba2b019d310917ec7 x
34+
F configure.ac 13f45f02e6c51dd0e347315b5401c3f047712b7f79b7f35619115c23755afcff
3535
F contrib/sqlitecon.tcl 210a913ad63f9f991070821e599d600bd913e0ad
3636
F doc/lemon.html b5a3c07d33ecb8e019ce8f7660fe2dbbad9d7977
3737
F doc/pager-invariants.txt 27fed9a70ddad2088750c4a2b493b63853da2710
@@ -346,7 +346,7 @@ F src/auth.c 79f96c6f33bf0e5da8d1c282cee5ebb1852bb8a6ccca3e485d7c459b035d9c3c
346346
F src/backup.c faf17e60b43233c214aae6a8179d24503a61e83b
347347
F src/bitvec.c 17ea48eff8ba979f1f5b04cc484c7bb2be632f33
348348
F src/btmutex.c 0e9ce2d56159b89b9bc8e197e023ee11e39ff8ca
349-
F src/btree.c 8c1fd4cfa2b0bf021386e0a1f4e30b64eea7a2c1bc2e0c3e5901a626b1ab6aa9
349+
F src/btree.c de57bf3f205082eb4ad8c923af7ecd1d10c4f15656f6a38038a3bd9b8ac3fc2a
350350
F src/btree.h 80f518c0788be6cec8d9f8e13bd8e380df299d2b5e4ac340dc887b0642647cfc
351351
F src/btreeInt.h a392d353104b4add58b4a59cb185f5d5693dde832c565b77d8d4c343ed98f610
352352
F src/build.c 4026a9c554b233e50c5e9ad46963e676cf54dd2306d952aa1eaa07a1bc9ce14f
@@ -537,7 +537,7 @@ F test/autoindex2.test 12ef578928102baaa0dc23ad397601a2f4ecb0df
537537
F test/autoindex3.test a3be0d1a53a7d2edff208a5e442312957047e972
538538
F test/autoindex4.test 49d3cd791a9baa16fb461d7ea3de80d019a819cf
539539
F test/autoindex5.test 96f084a5e6024ea07cace5888df3223f3ea86990
540-
F test/autovacuum.test 92c24eedbdb68e49f3fb71f26f9ce6d8988cac15
540+
F test/autovacuum.test 0831cd34e14695d297187f7f6519265e3121c5b0a1720e548e86829e796129e9
541541
F test/autovacuum_ioerr2.test 8a367b224183ad801e0e24dcb7d1501f45f244b4
542542
F test/avtrans.test 0252654f4295ddda3b2cce0e894812259e655a85
543543
F test/backcompat.test 3e64cedda754c778ef6bbe417b6e7a295e662a4d
@@ -1580,11 +1580,11 @@ F vsixtest/vsixtest.tcl 6a9a6ab600c25a91a7acc6293828957a386a8a93
15801580
F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
15811581
F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
15821582
F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
1583-
P 1a074c8a2bc0b28918ef905339d11a21d30101b4ea8c06c8b3faca7d17237538
1584-
R f4b3c258ec4a8c30fd1362752bfd9b5c
1583+
P 97b5c4a53d0af3792c5ae5ceafdb02245f841c2bd4d79bcfd0ffdf6c5ff27c9e
1584+
R b94272eb5bee6b36b4ac20fd561bc415
15851585
T +bgcolor * #d0c0ff
15861586
T +sym-release *
1587-
T +sym-version-3.19.2 *
1587+
T +sym-version-3.19.3 *
15881588
U drh
1589-
Z 1c4850e8eeff11c8d32e6493160f83cd
1589+
Z 0ee14e0381c757607413d6046358676f
15901590
# Remove this line to create a well-formed manifest.

sqlite/manifest.uuid

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
edb4e819b0c058c7d74d27ebd14cc5ceb2bad6a6144a486a970182b7afe3f8b9
1+
0ee482a1e0eae22e08edc8978c9733a96603d4509645f348ebf55b579e89636b

sqlite/src/btree.c

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8174,12 +8174,18 @@ int sqlite3BtreeInsert(
81748174
memcpy(newCell, oldCell, 4);
81758175
}
81768176
rc = clearCell(pPage, oldCell, &info);
8177-
if( info.nSize==szNew && info.nLocal==info.nPayload ){
8177+
if( info.nSize==szNew && info.nLocal==info.nPayload
8178+
&& (!ISAUTOVACUUM || szNew<pPage->minLocal)
8179+
){
81788180
/* Overwrite the old cell with the new if they are the same size.
81798181
** We could also try to do this if the old cell is smaller, then add
81808182
** the leftover space to the free list. But experiments show that
81818183
** doing that is no faster then skipping this optimization and just
8182-
** calling dropCell() and insertCell(). */
8184+
** calling dropCell() and insertCell().
8185+
**
8186+
** This optimization cannot be used on an autovacuum database if the
8187+
** new entry uses overflow pages, as the insertCell() call below is
8188+
** necessary to add the PTRMAP_OVERFLOW1 pointer-map entry. */
81838189
assert( rc==SQLITE_OK ); /* clearCell never fails when nLocal==nPayload */
81848190
if( oldCell+szNew > pPage->aDataEnd ) return SQLITE_CORRUPT_BKPT;
81858191
memcpy(oldCell, newCell, szNew);

sqlite/test/autovacuum.test

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -705,5 +705,12 @@ do_test autovacuum-9.5 {
705705
file size test.db
706706
} $::sqlite_pending_byte
707707

708+
do_execsql_test autovacuum-10.1 {
709+
DROP TABLE t1;
710+
CREATE TABLE t1(a INTEGER PRIMARY KEY, b);
711+
INSERT INTO t1 VALUES(25, randomblob(104));
712+
REPLACE INTO t1 VALUES(25, randomblob(1117));
713+
PRAGMA integrity_check;
714+
} {ok}
708715

709716
finish_test

0 commit comments

Comments
 (0)