1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-16 23:02:26 +03:00

Fix sqlite3VdbeRecordCompareWithSkip() so that it sorts the internal-use

serial-type of 10 together with NULLs.
dbsqlfuzz 5ff35e9d49a5fcca5051e23960ff2f483a538bab

FossilOrigin-Name: 4fb77e96fa89a23a9365320c4190834edd6c09cfaf1ca30b34ce19b747ebbec0
This commit is contained in:
drh
2022-10-18 10:27:06 +00:00
parent ce152a4369
commit 43fce6bb0d
3 changed files with 9 additions and 9 deletions

View File

@@ -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 ){