|
7 | 7 | *
|
8 | 8 | *
|
9 | 9 | * 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 $ |
11 | 11 | *
|
12 | 12 | * NOTES
|
13 | 13 | * this is the "main" module of the postgres backend and
|
@@ -560,14 +560,14 @@ pg_plan(char *query_string, /* string to execute */
|
560 | 560 | */
|
561 | 561 |
|
562 | 562 | void
|
563 |
| -pg_eval(char *query_string, char *argv[], Oid *typev, int nargs) |
| 563 | +pg_eval(char *query_string, char **argv, Oid *typev, int nargs) |
564 | 564 | {
|
565 | 565 | pg_eval_dest(query_string, argv, typev, nargs, whereToSendOutput);
|
566 | 566 | }
|
567 | 567 |
|
568 | 568 | void
|
569 | 569 | pg_eval_dest(char *query_string, /* string to execute */
|
570 |
| - char *argv[], /* arguments */ |
| 570 | + char **argv, /* arguments */ |
571 | 571 | Oid *typev, /* argument types */
|
572 | 572 | int nargs, /* number of arguments */
|
573 | 573 | CommandDest dest) /* where results should go */
|
@@ -1227,7 +1227,7 @@ PostgresMain(int argc, char *argv[])
|
1227 | 1227 | */
|
1228 | 1228 | if (IsUnderPostmaster == false) {
|
1229 | 1229 | 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 $"); |
1231 | 1231 | }
|
1232 | 1232 |
|
1233 | 1233 | /* ----------------
|
|
0 commit comments