mirror of
https://github.com/postgres/postgres.git
synced 2025-07-14 08:21:07 +03:00
Various compile errors concerning overflow due to shifts, unsigned, and bad prototypes, from Solaris, from Diab Jerius
This commit is contained in:
@ -9,7 +9,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.17 1997/05/22 00:15:36 scrappy Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.18 1997/07/24 20:15:18 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -476,7 +476,6 @@ ProcessUtility(Node *parsetree,
|
||||
{
|
||||
char *viewName = stmt->name;
|
||||
char *ruleName;
|
||||
extern char *RewriteGetRuleEventRel();
|
||||
|
||||
#ifndef NO_SECURITY
|
||||
|
||||
@ -587,7 +586,7 @@ ProcessUtility(Node *parsetree,
|
||||
case T_LoadStmt:
|
||||
{
|
||||
LoadStmt *stmt = (LoadStmt *)parsetree;
|
||||
FILE *fp, *fopen();
|
||||
FILE *fp;
|
||||
char *filename;
|
||||
|
||||
commandTag = "LOAD";
|
||||
|
Reference in New Issue
Block a user