aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <>2022-10-18 11:28:33 +0000
committerdrh <>2022-10-18 11:28:33 +0000
commit451393c4f46c071b9af1a422c93f00c4ba77e8fd (patch)
tree99d1a7eed343a39d17ec0b781900515970f3b1d7 /src
parent79b99b09fa92d65d3ad065731e9f6392300bc120 (diff)
parent43fce6bb0d85d596615f9f71b040dfa5ef395d65 (diff)
downloadsqlite-451393c4f46c071b9af1a422c93f00c4ba77e8fd.tar.gz
sqlite-451393c4f46c071b9af1a422c93f00c4ba77e8fd.zip
Merge trunk fixes into the index-expr-opt branch.
FossilOrigin-Name: c7b9cc645b394a1b638a9a13ca83d321215aaa78d69ca70c6baa0ee692ed21bf
Diffstat (limited to 'src')
-rw-r--r--src/vdbeaux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vdbeaux.c b/src/vdbeaux.c
index 18bbcd2f9..67de532d8 100644
--- a/src/vdbeaux.c
+++ b/src/vdbeaux.c
@@ -4691,7 +4691,7 @@ int sqlite3VdbeRecordCompareWithSkip(
/* RHS is null */
else{
serial_type = aKey1[idx1];
- rc = (serial_type!=0);
+ rc = (serial_type!=0 && serial_type!=10);
}
if( rc!=0 ){