diff options
author | Marc G. Fournier <scrappy@hub.org> | 1998-07-26 04:31:41 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1998-07-26 04:31:41 +0000 |
commit | 5979d7384179a41390c1ed122c6cc60d30287e2a (patch) | |
tree | 5c45522ec5301eefd17f5439c216f9e628b60d3f /src/include/commands/variable.h | |
parent | 74b30a3a1f96eb58e7cca0a92fb00bce7e825fbe (diff) |
From: t-ishii@sra.co.jp
As Bruce mentioned, this is due to the conflict among changes we made.
Included patches should fix the problem(I changed all MB to
MULTIBYTE). Please let me know if you have further problem.
P.S. I did not include pathces to configure and gram.c to save the
file size(configure.in and gram.y modified).
Diffstat (limited to 'src/include/commands/variable.h')
-rw-r--r-- | src/include/commands/variable.h | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/src/include/commands/variable.h b/src/include/commands/variable.h index c727dc027bb..92f4bda3462 100644 --- a/src/include/commands/variable.h +++ b/src/include/commands/variable.h @@ -2,7 +2,7 @@ * Headers for handling of 'SET var TO', 'SHOW var' and 'RESET var' * statements * - * $Id: variable.h,v 1.4 1998/07/18 18:34:21 momjian Exp $ + * $Id: variable.h,v 1.5 1998/07/26 04:31:24 scrappy Exp $ * */ #ifndef VARIABLE_H @@ -54,17 +54,5 @@ extern bool set_geqo(void); extern bool show_geqo(void); extern bool reset_geqo(void); extern bool parse_geqo(const char *); -#ifdef MULTIBYTE -extern bool show_client_encoding(void); -extern bool reset_client_encoding(void); -extern bool parse_client_encoding(const char *); -extern int pg_set_client_encoding(int); -extern int pg_get_client_encoding(void); -extern unsigned char *pg_client_to_server(unsigned char *, int); -extern unsigned char *pg_server_to_client(unsigned char *, int); -extern int pg_valid_client_encoding(const char *); -extern const char *pg_encoding_to_char(int); -extern int pg_char_to_encoding(const char *); -#endif #endif /* VARIABLE_H */ |