From: Tom Lane Date: Tue, 2 Feb 2016 20:26:21 +0000 (-0500) Subject: Remove printQueryOpt.quote field. X-Git-Tag: REL9_6_BETA1~783 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2808a2e0f3e7dd98f5dc3041183fd5f389e0a8e1;p=postgresql Remove printQueryOpt.quote field. This field was included in the original definition of the printQueryOpt struct in commit a45195a191eec367, but it was not used anywhere in that commit, nor since then. Spotted by Dickson S. Guedes. --- diff --git a/src/bin/psql/print.h b/src/bin/psql/print.h index 868fcddf9c..005ba15e98 100644 --- a/src/bin/psql/print.h +++ b/src/bin/psql/print.h @@ -152,7 +152,6 @@ typedef struct printQueryOpt { printTableOpt topt; /* the options above */ char *nullPrint; /* how to print null entities */ - bool quote; /* quote all values as much as possible */ char *title; /* override title */ char **footers; /* override footer (default is "(xx rows)") */ bool translate_header; /* do gettext on column headers */