+
+ footer
+
+ Toggles the display of the default footer (x rows).
+
+
+
+
recordsep
*
* Copyright 2000 by PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.53 2001/05/12 17:37:15 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.54 2001/05/12 19:44:46 petere Exp $
*/
#include "postgres_fe.h"
#include "command.h"
}
}
+ /* disable "(x rows)" footer */
+ else if (strcmp(param, "footer") == 0)
+ {
+ popt->default_footer = !popt->default_footer;
+ if (!quiet)
+ {
+ if (popt->default_footer)
+ puts("Default footer is on.");
+ else
+ puts("Default footer is off.");
+ }
+ }
else
{
*
* Copyright 2000 by PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/print.c,v 1.18 2001/03/22 04:00:22 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/bin/psql/print.c,v 1.19 2001/05/12 19:44:46 petere Exp $
*/
#include "postgres_fe.h"
#include "print.h"
if (opt->footers)
footers = opt->footers;
- else if (!opt->topt.expanded)
+ else if (!opt->topt.expanded && opt->default_footer)
{
footers = calloc(2, sizeof(*footers));
if (!footers)
*
* Copyright 2000 by PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/print.h,v 1.8 2000/04/12 17:16:23 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/bin/psql/print.h,v 1.9 2001/05/12 19:44:46 petere Exp $
*/
#ifndef PRINT_H
#define PRINT_H
char *title; /* override title */
char **footers; /* override footer (default is "(xx
* rows)") */
+ bool default_footer; /* print default footer if footers==NULL */
} printQueryOpt;
/*
* It calls the printTable above with all the things set straight.
*/
void
- printQuery(const PGresult *result, const printQueryOpt *opt, FILE *fout);
+printQuery(const PGresult *result, const printQueryOpt *opt, FILE *fout);
#endif /* PRINT_H */
*
* Copyright 2000 by PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/startup.c,v 1.47 2001/05/06 17:38:32 petere Exp $
+ * $Header: /cvsroot/pgsql/src/bin/psql/startup.c,v 1.48 2001/05/12 19:44:46 petere Exp $
*/
#include "postgres_fe.h"
pset.queryFout = stdout;
pset.popt.topt.border = 1;
pset.popt.topt.pager = true;
+ pset.popt.default_footer = true;
SetVariable(pset.vars, "VERSION", PG_VERSION_STR);