|
7 | 7 | *
|
8 | 8 | *
|
9 | 9 | * IDENTIFICATION
|
10 |
| - * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.4 1996/07/22 23:00:26 scrappy Exp $ |
| 10 | + * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.4.2.1 1996/08/19 13:36:43 scrappy Exp $ |
11 | 11 | *
|
12 | 12 | * NOTES
|
13 | 13 | * this is the "main" module of the postgres backend and
|
@@ -556,14 +556,14 @@ pg_plan(char *query_string, /* string to execute */
|
556 | 556 | */
|
557 | 557 |
|
558 | 558 | void
|
559 |
| -pg_eval(char *query_string, char *argv[], Oid *typev, int nargs) |
| 559 | +pg_eval(char *query_string, char **argv, Oid *typev, int nargs) |
560 | 560 | {
|
561 | 561 | pg_eval_dest(query_string, argv, typev, nargs, whereToSendOutput);
|
562 | 562 | }
|
563 | 563 |
|
564 | 564 | void
|
565 | 565 | pg_eval_dest(char *query_string, /* string to execute */
|
566 |
| - char *argv[], /* arguments */ |
| 566 | + char **argv, /* arguments */ |
567 | 567 | Oid *typev, /* argument types */
|
568 | 568 | int nargs, /* number of arguments */
|
569 | 569 | CommandDest dest) /* where results should go */
|
@@ -1223,7 +1223,7 @@ PostgresMain(int argc, char *argv[])
|
1223 | 1223 | */
|
1224 | 1224 | if (IsUnderPostmaster == false) {
|
1225 | 1225 | puts("\nPOSTGRES backend interactive interface");
|
1226 |
| - puts("$Revision: 1.4 $ $Date: 1996/07/22 23:00:26 $"); |
| 1226 | + puts("$Revision: 1.4.2.1 $ $Date: 1996/08/19 13:36:43 $"); |
1227 | 1227 | }
|
1228 | 1228 |
|
1229 | 1229 | /* ----------------
|
|
0 commit comments