]> granicus.if.org Git - postgresql/commitdiff
Add command '\pset footer' to psql to turn off default "(x rows)" footer.
authorPeter Eisentraut <peter_e@gmx.net>
Sat, 12 May 2001 19:44:46 +0000 (19:44 +0000)
committerPeter Eisentraut <peter_e@gmx.net>
Sat, 12 May 2001 19:44:46 +0000 (19:44 +0000)
doc/src/sgml/ref/psql-ref.sgml
src/bin/psql/command.c
src/bin/psql/print.c
src/bin/psql/print.h
src/bin/psql/startup.c

index a5a1dc8ac00022a0048b51b2ca01973637d3aabb..af3b90968e2b71d19c3f74a49c1900288db1c836 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.51 2001/05/09 17:29:10 momjian Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.52 2001/05/12 19:44:45 petere Exp $
 Postgres documentation
 -->
 
@@ -898,6 +898,15 @@ lo_import 152801
          </listitem>
          </varlistentry>
 
+         <varlistentry>
+         <term><literal>footer</literal></term>
+         <listitem>
+         <para>
+         Toggles the display of the default footer <literal>(x rows)</literal>.
+         </para>
+         </listitem>
+         </varlistentry>
+
          <varlistentry>
          <term><literal>recordsep</literal></term>
          <listitem>
index 7604cccbd0047fd13fee2976a89d13d40433e360..e17f8a04b4ff0929c3f4a5f6d4120233c1883377 100644 (file)
@@ -3,7 +3,7 @@
  *
  * 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"
@@ -1796,6 +1796,18 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet)
                }
        }
 
+       /* 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
        {
index 56f15427a317114a83dd7e3dfbc39dc5e8208b02..a047a59eb315873a2a0155f74429815981d14216 100644 (file)
@@ -3,7 +3,7 @@
  *
  * 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"
@@ -1058,7 +1058,7 @@ printQuery(const PGresult *result, const printQueryOpt *opt, FILE *fout)
 
        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)
index d2c8980ba78215df1f407899e6f4898c09bf6115..1cc3bcb6e22475d1aa86b5ed6a545f081e3f17ff 100644 (file)
@@ -3,7 +3,7 @@
  *
  * 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
@@ -64,6 +64,7 @@ typedef struct _printQueryOpt
        char       *title;                      /* override title */
        char      **footers;            /* override footer (default is "(xx
                                                                 * rows)") */
+       bool            default_footer; /* print default footer if footers==NULL */
 } printQueryOpt;
 
 /*
@@ -72,7 +73,7 @@ typedef struct _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 */
index 3d38afaf6babb765d5578844484f3daca24bdc09..91e3f4adbc1dbd61917b9d79b1aa6c5f53f3d0a6 100644 (file)
@@ -3,7 +3,7 @@
  *
  * 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"
 
@@ -135,6 +135,7 @@ main(int argc, char *argv[])
        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);