diff options
author | drh <drh@noemail.net> | 2016-11-25 19:32:32 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2016-11-25 19:32:32 +0000 |
commit | 9057fc7c7fc2038d8c5873af35d22415d842c6cf (patch) | |
tree | 22bf9210a978e126b5f44018854df110d664452b /src/insert.c | |
parent | cb3cabd01b81ff1c4a31466cccef809b665a6999 (diff) | |
download | sqlite-9057fc7c7fc2038d8c5873af35d22415d842c6cf.tar.gz sqlite-9057fc7c7fc2038d8c5873af35d22415d842c6cf.zip |
Remove the OP_RowKey opcode. Use OP_RowData in its place.
FossilOrigin-Name: 6ac7b07a4aff2e1a9031289e3dafdb9ac0071c24
Diffstat (limited to 'src/insert.c')
-rw-r--r-- | src/insert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/insert.c b/src/insert.c index bb9936f3f..007e0bb57 100644 --- a/src/insert.c +++ b/src/insert.c @@ -2156,7 +2156,7 @@ static int xferOptimization( sqlite3VdbeChangeP5(v, OPFLAG_BULKCSR); VdbeComment((v, "%s", pDestIdx->zName)); addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0); VdbeCoverage(v); - sqlite3VdbeAddOp2(v, OP_RowKey, iSrc, regData); + sqlite3VdbeAddOp2(v, OP_RowData, iSrc, regData); if( db->flags & SQLITE_Vacuum ){ /* This INSERT command is part of a VACUUM operation, which guarantees ** that the destination table is empty. If all indexed columns use |