diff options
author | drh <> | 2023-11-20 15:54:00 +0000 |
---|---|---|
committer | drh <> | 2023-11-20 15:54:00 +0000 |
commit | 4f77a270325fe4a582f93f341516db5e2507b064 (patch) | |
tree | 2f7d2e44388ff845e869e7c058981504d1dce182 /src/expr.c | |
parent | 0fcaf16f20a1a9c38aa740f41941f86134b7ada8 (diff) | |
download | sqlite-4f77a270325fe4a582f93f341516db5e2507b064.tar.gz sqlite-4f77a270325fe4a582f93f341516db5e2507b064.zip |
Back out an incorrect change to the sqlite3ExprCompareSkip() function that
was added way back on 2019-08-22 for [44578865fa7baf97|check-in 44578865fa7ba]
and which was only today discovered to be incorrect by
[forum:/forumpost/45ec3d9788|forum post 45ec3d9788].
FossilOrigin-Name: f5b3eb0fc8936ba274a7654ff6dfa7d4654bd8dbca7f3a5ec1134b0b5260d59d
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expr.c b/src/expr.c index f9234734d..8a664ffb9 100644 --- a/src/expr.c +++ b/src/expr.c @@ -6043,8 +6043,8 @@ int sqlite3ExprListCompare(const ExprList *pA, const ExprList *pB, int iTab){ */ int sqlite3ExprCompareSkip(Expr *pA,Expr *pB, int iTab){ return sqlite3ExprCompare(0, - sqlite3ExprSkipCollateAndLikely(pA), - sqlite3ExprSkipCollateAndLikely(pB), + sqlite3ExprSkipCollate(pA), + sqlite3ExprSkipCollate(pB), iTab); } |