diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-10-20 22:04:49 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-10-20 22:04:49 +0000 |
commit | d458a1c747d80ce5a3627a39ff9c319cfeda550d (patch) | |
tree | 3f082b4d61a9101fa1e57ec92ebcc5c91dfb1831 /src/backend/access/common/indexvalid.c | |
parent | 597a1de90331699f3a862e89aae9751ef2f6496e (diff) | |
download | postgresql-d458a1c747d80ce5a3627a39ff9c319cfeda550d.tar.gz postgresql-d458a1c747d80ce5a3627a39ff9c319cfeda550d.zip |
Other then:
indextuple.c:159: warning: `bp' might be used uninitialized in this function
this directory passes -Wall -Werror under FreeBSD
Diffstat (limited to 'src/backend/access/common/indexvalid.c')
-rw-r--r-- | src/backend/access/common/indexvalid.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/backend/access/common/indexvalid.c b/src/backend/access/common/indexvalid.c index d9ddbaab50f..41eff140704 100644 --- a/src/backend/access/common/indexvalid.c +++ b/src/backend/access/common/indexvalid.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/common/Attic/indexvalid.c,v 1.4 1996/10/20 08:31:31 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/common/Attic/indexvalid.c,v 1.5 1996/10/20 22:04:43 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -29,6 +29,8 @@ #include "utils/nabstime.h" #include "access/htup.h" +#include "executor/execdebug.h" + /* ---------------------------------------------------------------- * index scan key qualification code * ---------------------------------------------------------------- |