mirror of
https://github.com/postgres/postgres.git
synced 2025-09-03 15:22:11 +03:00
Renaming cleanup, no pgindent yet.
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/tcop/dest.c,v 1.21 1998/07/20 16:56:57 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/tcop/dest.c,v 1.22 1998/09/01 03:25:38 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -238,7 +238,7 @@ BeginCommand(char *pname,
|
||||
CommandDest dest)
|
||||
{
|
||||
PortalEntry *entry;
|
||||
AttributeTupleForm *attrs = tupdesc->attrs;
|
||||
Form_pg_attribute *attrs = tupdesc->attrs;
|
||||
int natts = tupdesc->natts;
|
||||
int i;
|
||||
char *p;
|
||||
|
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/tcop/fastpath.c,v 1.19 1998/08/19 02:02:48 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/tcop/fastpath.c,v 1.20 1998/09/01 03:25:40 momjian Exp $
|
||||
*
|
||||
* NOTES
|
||||
* This cruft is the server side of PQfn.
|
||||
@@ -187,7 +187,7 @@ update_fp_info(Oid func_id, struct fp_info * fip)
|
||||
Oid rettype;
|
||||
HeapTuple func_htp,
|
||||
type_htp;
|
||||
TypeTupleForm tp;
|
||||
Form_pg_type tp;
|
||||
Form_pg_proc pp;
|
||||
int i;
|
||||
|
||||
@@ -229,7 +229,7 @@ update_fp_info(Oid func_id, struct fp_info * fip)
|
||||
elog(ERROR, "update_fp_info: bad argument type %d for %d",
|
||||
argtypes[i], func_id);
|
||||
}
|
||||
tp = (TypeTupleForm) GETSTRUCT(type_htp);
|
||||
tp = (Form_pg_type) GETSTRUCT(type_htp);
|
||||
fip->argbyval[i] = tp->typbyval;
|
||||
fip->arglen[i] = tp->typlen;
|
||||
} /* else it had better be VAR_LENGTH_ARG */
|
||||
@@ -245,7 +245,7 @@ update_fp_info(Oid func_id, struct fp_info * fip)
|
||||
elog(ERROR, "update_fp_info: bad return type %d for %d",
|
||||
rettype, func_id);
|
||||
}
|
||||
tp = (TypeTupleForm) GETSTRUCT(type_htp);
|
||||
tp = (Form_pg_type) GETSTRUCT(type_htp);
|
||||
fip->retbyval = tp->typbyval;
|
||||
fip->retlen = tp->typlen;
|
||||
} /* else it had better by VAR_LENGTH_RESULT */
|
||||
@@ -375,5 +375,5 @@ HandleFunctionRequest()
|
||||
|
||||
|
||||
|
||||
return (0);
|
||||
return 0;
|
||||
}
|
||||
|
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.87 1998/08/30 21:05:27 scrappy Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.88 1998/09/01 03:25:41 momjian Exp $
|
||||
*
|
||||
* NOTES
|
||||
* this is the "main" module of the postgres backend and
|
||||
@@ -296,7 +296,7 @@ InteractiveBackend(char *inBuf)
|
||||
if (EchoQuery)
|
||||
printf("query: %s\n", inBuf);
|
||||
|
||||
return ('Q');
|
||||
return 'Q';
|
||||
}
|
||||
|
||||
/* ----------------
|
||||
@@ -661,7 +661,7 @@ pg_parse_and_plan(char *query_string, /* string to execute */
|
||||
if (queryListP)
|
||||
*queryListP = querytree_list;
|
||||
|
||||
return (plan_list);
|
||||
return plan_list;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------
|
||||
@@ -1521,7 +1521,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[])
|
||||
if (!IsUnderPostmaster)
|
||||
{
|
||||
puts("\nPOSTGRES backend interactive interface");
|
||||
puts("$Revision: 1.87 $ $Date: 1998/08/30 21:05:27 $");
|
||||
puts("$Revision: 1.88 $ $Date: 1998/09/01 03:25:41 $");
|
||||
}
|
||||
|
||||
/* ----------------
|
||||
|
Reference in New Issue
Block a user