aboutsummaryrefslogtreecommitdiff
path: root/src/expr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr.c')
-rw-r--r--src/expr.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/expr.c b/src/expr.c
index 2921898d3..3dcb73ff1 100644
--- a/src/expr.c
+++ b/src/expr.c
@@ -3512,18 +3512,6 @@ int sqlite3ExprCodeTarget(Parse *pParse, Expr *pExpr, int target){
break;
}
- case TK_SELECT_COLUMN: {
- Expr *pLeft = pExpr->pLeft;
- assert( pLeft );
- assert( pLeft->op==TK_SELECT || pLeft->op==TK_REGISTER );
- if( pLeft->op==TK_SELECT ){
- pLeft->iTable = sqlite3CodeSubselect(pParse, pLeft, 0, 0);
- pLeft->op = TK_REGISTER;
- }
- inReg = pLeft->iTable + pExpr->iColumn;
- break;
- }
-
/*
** Form A:
** CASE x WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END