diff options
author | Bruce Momjian <bruce@momjian.us> | 2005-07-14 06:49:58 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2005-07-14 06:49:58 +0000 |
commit | 52d1d2e67c7d549ab77fc7ce9750948bb3c667c5 (patch) | |
tree | 3e6ba046bf9950208fe1737d168792a6e889b112 /src/bin/psql/command.c | |
parent | cff9c5748aef10a7ef6ed20fe30e0482951c9b29 (diff) |
barebones variable name -> tuples_only, for consistency.
Diffstat (limited to 'src/bin/psql/command.c')
-rw-r--r-- | src/bin/psql/command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index e6affb53549..888fa4f55a6 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.147 2005/07/10 03:46:13 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.148 2005/07/14 06:49:58 momjian Exp $ */ #include "postgres_fe.h" #include "command.h" @@ -1472,7 +1472,7 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet) } } - /* toggle between full and barebones format */ + /* toggle between full and tuples-only format */ else if (strcmp(param, "t") == 0 || strcmp(param, "tuples_only") == 0) { popt->topt.tuples_only = !popt->topt.tuples_only; |