1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Bug fix associated with misc3.test. (CVS 1414)

FossilOrigin-Name: a7f02db73881eb2d899daa93646962960dac5375
This commit is contained in:
drh
2004-05-20 03:02:47 +00:00
parent b6f5452fb2
commit d686179207
3 changed files with 9 additions and 9 deletions

View File

@@ -12,7 +12,7 @@
** This file contains C code routines that are called by the parser
** to handle SELECT statements in SQLite.
**
** $Id: select.c,v 1.169 2004/05/19 14:56:56 drh Exp $
** $Id: select.c,v 1.170 2004/05/20 03:02:47 drh Exp $
*/
#include "sqliteInt.h"
@@ -608,7 +608,7 @@ static void generateSortTail(
sqlite3VdbeAddOp(v, OP_NotNull, -1, sqlite3VdbeCurrentAddr(v)+3);
sqlite3VdbeAddOp(v, OP_Pop, 1, 0);
sqlite3VdbeAddOp(v, OP_Goto, 0, sqlite3VdbeCurrentAddr(v)+3);
sqlite3VdbeOp3(v, OP_MakeKey, 1, 1, "n", P3_STATIC);
sqlite3VdbeOp3(v, OP_MakeKey, 1, 0, "n", P3_STATIC);
sqlite3VdbeAddOp(v, OP_String, 0, 0);
sqlite3VdbeAddOp(v, OP_PutStrKey, (iParm&0x0000FFFF), 0);
break;