diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2002-09-03 21:45:44 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2002-09-03 21:45:44 +0000 |
commit | 77f7763b55a89254f3b4be1f92402188bf2575b8 (patch) | |
tree | 95af88df05d1251ee25dd28cf826c664748daa14 /src/backend/utils/adt/quote.c | |
parent | 86f27321e25b5a1a7b6c78400e54f063525b07d5 (diff) | |
download | postgresql-77f7763b55a89254f3b4be1f92402188bf2575b8.tar.gz postgresql-77f7763b55a89254f3b4be1f92402188bf2575b8.zip |
Remove all traces of multibyte and locale options. Clean up comments
referring to "multibyte" where it really means character encoding.
Diffstat (limited to 'src/backend/utils/adt/quote.c')
-rw-r--r-- | src/backend/utils/adt/quote.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/backend/utils/adt/quote.c b/src/backend/utils/adt/quote.c index 97946866d01..d41856c8478 100644 --- a/src/backend/utils/adt/quote.c +++ b/src/backend/utils/adt/quote.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/adt/quote.c,v 1.8 2002/08/29 07:22:27 ishii Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/adt/quote.c,v 1.9 2002/09/03 21:45:42 petere Exp $ * *------------------------------------------------------------------------- */ @@ -64,13 +64,9 @@ quote_literal(PG_FUNCTION_ARGS) PG_RETURN_TEXT_P(result); } - /* - * MULTIBYTE dependant internal functions follow - * + * Check if a given identifier needs quoting */ - -/* Check if a given identifier needs quoting (MULTIBYTE version) */ static bool quote_ident_required(text *iptr) { @@ -106,7 +102,9 @@ quote_ident_required(text *iptr) return false; } -/* Return a properly quoted identifier (MULTIBYTE version) */ +/* + * Return a properly quoted identifier + */ static text * do_quote_ident(text *iptr) { @@ -147,7 +145,9 @@ do_quote_ident(text *iptr) return result; } -/* Return a properly quoted literal value (MULTIBYTE version) */ +/* + * Return a properly quoted literal value + */ static text * do_quote_literal(text *lptr) { |