1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-10 17:42:29 +03:00

Other then:

indextuple.c:159: warning: `bp' might be used uninitialized in this function

this directory passes -Wall -Werror under FreeBSD
This commit is contained in:
Marc G. Fournier
1996-10-20 22:04:49 +00:00
parent 597a1de903
commit d458a1c747
7 changed files with 75 additions and 7 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/common/tupdesc.c,v 1.3 1996/10/20 08:31:35 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/common/tupdesc.c,v 1.4 1996/10/20 22:04:49 scrappy Exp $
*
* NOTES
* some of the executor utility code such as "ExecTypeFromTL" should be
@@ -50,6 +50,16 @@
#include "utils/palloc.h"
#include <string.h>
#ifndef HAVE_MEMMOVE
# include "regex/utils.h"
#endif
#include "utils/geo-decls.h"
#include "utils/builtins.h"
#include <stdio.h>
/* ----------------------------------------------------------------
* CreateTemplateTupleDesc
*