|
|
|
@ -7,7 +7,7 @@ |
|
|
|
* |
|
|
|
* |
|
|
|
* |
|
|
|
* |
|
|
|
* IDENTIFICATION |
|
|
|
* IDENTIFICATION |
|
|
|
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.5 1996/08/06 16:43:41 scrappy Exp $ |
|
|
|
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.6 1996/08/19 13:37:49 scrappy Exp $ |
|
|
|
* |
|
|
|
* |
|
|
|
* NOTES |
|
|
|
* NOTES |
|
|
|
* this is the "main" module of the postgres backend and |
|
|
|
* this is the "main" module of the postgres backend and |
|
|
|
@ -560,14 +560,14 @@ pg_plan(char *query_string, /* string to execute */ |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
void |
|
|
|
void |
|
|
|
pg_eval(char *query_string, char *argv[], Oid *typev, int nargs) |
|
|
|
pg_eval(char *query_string, char **argv, Oid *typev, int nargs) |
|
|
|
{ |
|
|
|
{ |
|
|
|
pg_eval_dest(query_string, argv, typev, nargs, whereToSendOutput); |
|
|
|
pg_eval_dest(query_string, argv, typev, nargs, whereToSendOutput); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void |
|
|
|
void |
|
|
|
pg_eval_dest(char *query_string, /* string to execute */ |
|
|
|
pg_eval_dest(char *query_string, /* string to execute */ |
|
|
|
char *argv[], /* arguments */ |
|
|
|
char **argv, /* arguments */ |
|
|
|
Oid *typev, /* argument types */ |
|
|
|
Oid *typev, /* argument types */ |
|
|
|
int nargs, /* number of arguments */ |
|
|
|
int nargs, /* number of arguments */ |
|
|
|
CommandDest dest) /* where results should go */ |
|
|
|
CommandDest dest) /* where results should go */ |
|
|
|
@ -1227,7 +1227,7 @@ PostgresMain(int argc, char *argv[]) |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
if (IsUnderPostmaster == false) { |
|
|
|
if (IsUnderPostmaster == false) { |
|
|
|
puts("\nPOSTGRES backend interactive interface"); |
|
|
|
puts("\nPOSTGRES backend interactive interface"); |
|
|
|
puts("$Revision: 1.5 $ $Date: 1996/08/06 16:43:41 $"); |
|
|
|
puts("$Revision: 1.6 $ $Date: 1996/08/19 13:37:49 $"); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/* ----------------
|
|
|
|
/* ----------------
|
|
|
|
|