aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <>2023-10-19 20:06:20 +0000
committerdrh <>2023-10-19 20:06:20 +0000
commitdcf76a8bbda9028c391945834d67471fc8e2821f (patch)
tree1220f741defefd2c65313459a3aea61292ffe3d8 /src
parent5f53f85e22df1c5e1e36106b5e4d1db5089519aa (diff)
downloadsqlite-dcf76a8bbda9028c391945834d67471fc8e2821f.tar.gz
sqlite-dcf76a8bbda9028c391945834d67471fc8e2821f.zip
Remove a faulty assert() that was added just a few check-ins ago by
[8b6fffb552c30f9c]. FossilOrigin-Name: 18e7c826f08bce51719ef045daa60200b33790f2fe312c6853f9ef6c7e9d5030
Diffstat (limited to 'src')
-rw-r--r--src/select.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/select.c b/src/select.c
index 128b33ee0..29df3325f 100644
--- a/src/select.c
+++ b/src/select.c
@@ -417,7 +417,6 @@ void sqlite3SetJoinExpr(Expr *p, int iTable, u32 joinFlag){
p->w.iJoin = iTable;
if( p->op==TK_FUNCTION ){
assert( ExprUseXList(p) );
- assert( p->pLeft==0 );
if( p->x.pList ){
int i;
for(i=0; i<p->x.pList->nExpr; i++){