diff options
author | drh <drh@noemail.net> | 2008-06-22 12:37:57 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2008-06-22 12:37:57 +0000 |
commit | b21e7c70f761982929ea792cd7693ee5cc8bc6d8 (patch) | |
tree | 66ec7946212e3249e497013b0b793fb74abd9ce5 /src/test_mutex.c | |
parent | 04bcc00788ba770377fb171fe423a219a4bac498 (diff) | |
download | sqlite-b21e7c70f761982929ea792cd7693ee5cc8bc6d8.tar.gz sqlite-b21e7c70f761982929ea792cd7693ee5cc8bc6d8.zip |
Fix a bug in the KEYINFO handling within select.c. Change the OP_Move
opcode to take a count and to move multiple registers. Initial code for
the compound-select merge optimization is added but is incomplete
and is commented out. (CVS 5272)
FossilOrigin-Name: 663a590e3086145a57af7569d8f798b6b6a8b76c
Diffstat (limited to 'src/test_mutex.c')
-rw-r--r-- | src/test_mutex.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test_mutex.c b/src/test_mutex.c index ee3037e0d..b24bd2e67 100644 --- a/src/test_mutex.c +++ b/src/test_mutex.c @@ -10,7 +10,7 @@ ** ************************************************************************* ** -** $Id: test_mutex.c,v 1.3 2008/06/19 08:51:25 danielk1977 Exp $ +** $Id: test_mutex.c,v 1.4 2008/06/22 12:37:58 drh Exp $ */ #include "tcl.h" @@ -303,4 +303,3 @@ int Sqlitetest_mutex_Init(Tcl_Interp *interp){ memset(&g, 0, sizeof(g)); return SQLITE_OK; } - |