diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-07-15 19:19:56 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-07-15 19:19:56 +0000 |
commit | cfa6999d3b1bdcaa058c90392057a044b0f067e8 (patch) | |
tree | 90ef7c28ad711dc77543ef3d954528c6949ae000 /src/include/commands/variable.h | |
parent | 274328c8a88319f0a16d57c82128ee80ac26e578 (diff) | |
download | postgresql-cfa6999d3b1bdcaa058c90392057a044b0f067e8.tar.gz postgresql-cfa6999d3b1bdcaa058c90392057a044b0f067e8.zip |
Cause SHOW DATESTYLE to produce a string that will be accepted by SET
DATESTYLE, for instance 'SQL, European' instead of
'SQL with European conventions'. Per gripe a month or two back from
Barry Lind.
Diffstat (limited to 'src/include/commands/variable.h')
-rw-r--r-- | src/include/commands/variable.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/commands/variable.h b/src/include/commands/variable.h index 68a0ebf7450..fda1d9f0e56 100644 --- a/src/include/commands/variable.h +++ b/src/include/commands/variable.h @@ -2,7 +2,7 @@ * variable.h * Routines for handling specialized SET variables. * - * $Id: variable.h,v 1.20 2003/04/25 19:45:09 tgl Exp $ + * $Id: variable.h,v 1.21 2003/07/15 19:19:56 tgl Exp $ * */ #ifndef VARIABLE_H @@ -10,7 +10,6 @@ extern const char *assign_datestyle(const char *value, bool doit, bool interactive); -extern const char *show_datestyle(void); extern const char *assign_timezone(const char *value, bool doit, bool interactive); extern const char *show_timezone(void); |