Differences From:
File
src/pivot.c
part of check-in
[fa0ba20a51]
- Fix another bug in the pivot finder. Null-merge with the dan-branch
so that we now only have a single leaf on the tree.
by
drh on
2007-07-30 21:23:44.
[view]
To:
File
src/pivot.c
part of check-in
[e63a9fd9d0]
- Fixed many uninitialized variable warnings and some potential bug found via -Wall -Werror on gcc.
by
jnc on
2007-09-25 21:21:35.
Also file
src/pivot.c
part of check-in
[92291035fe]
- Merged the compiler warning fixes into mainstream
by
jnc on
2007-09-25 21:28:30.
Also file
src/pivot.c
part of check-in
[d0305b305a]
- Merged mainline into my branch to get the newest application.
by
aku on
2007-12-05 08:07:46.
[view]
@@ -83,9 +83,9 @@
** can be found.
*/
int pivot_find(void){
Stmt q1, q2, u1, i1;
- int rid;
+ int rid = 0;
/* aqueue must contain at least one primary and one other. Otherwise
** we abort early
*/