Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitc3673c0

Browse files
committed
More run-time checking errors:
-Kurt
1 parent60b1123 commitc3673c0

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

‎src/backend/tcop/postgres.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.5 1996/08/06 16:43:41 scrappy Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.6 1996/08/19 13:37:49 scrappy Exp $
1111
*
1212
* NOTES
1313
* this is the "main" module of the postgres backend and
@@ -560,14 +560,14 @@ pg_plan(char *query_string,/* string to execute */
560560
*/
561561

562562
void
563-
pg_eval(char*query_string,char*argv[],Oid*typev,intnargs)
563+
pg_eval(char*query_string,char**argv,Oid*typev,intnargs)
564564
{
565565
pg_eval_dest(query_string,argv,typev,nargs,whereToSendOutput);
566566
}
567567

568568
void
569569
pg_eval_dest(char*query_string,/* string to execute */
570-
char*argv[],/* arguments */
570+
char**argv,/* arguments */
571571
Oid*typev,/* argument types */
572572
intnargs,/* number of arguments */
573573
CommandDestdest)/* where results should go */
@@ -1227,7 +1227,7 @@ PostgresMain(int argc, char *argv[])
12271227
*/
12281228
if (IsUnderPostmaster== false) {
12291229
puts("\nPOSTGRES backend interactive interface");
1230-
puts("$Revision: 1.5 $ $Date: 1996/08/06 16:43:41 $");
1230+
puts("$Revision: 1.6 $ $Date: 1996/08/19 13:37:49 $");
12311231
}
12321232

12331233
/* ----------------

‎src/backend/tcop/tcopprot.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: tcopprot.h,v 1.1.1.1 1996/07/09 06:22:00 scrappy Exp $
9+
* $Id: tcopprot.h,v 1.2 1996/08/19 13:37:50 scrappy Exp $
1010
*
1111
* OLD COMMENTS
1212
* This file was created so that other c files could get the two
@@ -25,8 +25,8 @@
2525
#ifndefBOOTSTRAP_INCLUDE
2626
externList*pg_plan(char*query_string,Oid*typev,intnargs,
2727
QueryTreeList**queryListP,CommandDestdest);
28-
externvoidpg_eval(char*query_string,char*argv[],Oid*typev,intnargs);
29-
externvoidpg_eval_dest(char*query_string,char*argv[],Oid*typev,
28+
externvoidpg_eval(char*query_string,char**argv,Oid*typev,intnargs);
29+
externvoidpg_eval_dest(char*query_string,char**argv,Oid*typev,
3030
intnargs,CommandDestdest);
3131
#endif/* BOOTSTRAP_HEADER */
3232

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp