aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-10-23 07:42:13 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-10-23 07:42:13 +0000
commitf36b2560a4d8dbeb5e0383ca44f8c85adb593a4f (patch)
tree27720a1b42d0b658e23297e592ff2c1f6620891e /src/backend/executor
parent29a0fb84fcaddee3623c15b9a072ad893bb04270 (diff)
downloadpostgresql-f36b2560a4d8dbeb5e0383ca44f8c85adb593a4f.tar.gz
postgresql-f36b2560a4d8dbeb5e0383ca44f8c85adb593a4f.zip
Major code cleanups from D'arcy (-Wall -Werror)
Diffstat (limited to 'src/backend/executor')
-rw-r--r--src/backend/executor/execMain.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/backend/executor/execMain.c b/src/backend/executor/execMain.c
index 07a7c12776e..83062cc6850 100644
--- a/src/backend/executor/execMain.c
+++ b/src/backend/executor/execMain.c
@@ -26,11 +26,12 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.4 1996/09/19 19:57:18 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.5 1996/10/23 07:40:26 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#include "executor/executor.h"
+#include "executor/nodeIndexscan.h"
#include "utils/builtins.h"
#include "utils/palloc.h"
#include "utils/acl.h"
@@ -221,6 +222,7 @@ ExecutorRun(QueryDesc *queryDesc, EState *estate, int feature, int count)
destination);
break;
default:
+ result = NULL;
elog(DEBUG, "ExecutorRun: Unknown feature %d", feature);
break;
}