Skip to content
Snippets Groups Projects
Commit 02bbd95a authored by Marc G. Fournier's avatar Marc G. Fournier
Browse files

Backed out the changes to monitor.c that seem to be affecting the

ability for createuser to actually create one...
parent 753631ac
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/bin/monitor/Attic/monitor.c,v 1.2 1996/07/18 05:48:34 scrappy Exp $ * $Header: /cvsroot/pgsql/src/bin/monitor/Attic/monitor.c,v 1.3 1996/07/22 05:59:53 scrappy Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -642,7 +642,6 @@ handle_execution(char *query) ...@@ -642,7 +642,6 @@ handle_execution(char *query)
{ {
PGresult *result; PGresult *result;
int retval = 0; int retval = 0;
PQprintOpt opt;
result = PQexec(conn, query); result = PQexec(conn, query);
...@@ -658,18 +657,11 @@ handle_execution(char *query) ...@@ -658,18 +657,11 @@ handle_execution(char *query)
break; break;
case PGRES_TUPLES_OK: case PGRES_TUPLES_OK:
/* PQprintTuples(result,stdout,PrintAttNames,TerseOutput,COLWIDTH); */ /* PQprintTuples(result,stdout,PrintAttNames,TerseOutput,COLWIDTH); */
/* if (TerseOutput) if (TerseOutput)
PQdisplayTuples(result,stdout,1,"",PrintAttNames,TerseOutput); PQdisplayTuples(result,stdout,1,"",PrintAttNames,TerseOutput);
else else
PQdisplayTuples(result,stdout,1,"|",PrintAttNames,TerseOutput); */ PQdisplayTuples(result,stdout,1,"|",PrintAttNames,TerseOutput);
memset(&opt, 0, sizeof opt); break;
opt.header = opt.align = opt.standard = 1;
if (TerseOutput)
opt.fieldSep = "";
else
opt.fieldSep = "|";
PQprint(stdout, result, &opt);
break;
case PGRES_COPY_OUT: case PGRES_COPY_OUT:
handle_copy_out(result); handle_copy_out(result);
break; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment