mirror of
https://github.com/postgres/postgres.git
synced 2025-06-29 10:41:53 +03:00
Standard pgindent run for 8.1.
This commit is contained in:
@ -9,7 +9,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/utils/adt/char.c,v 1.42 2004/12/31 22:01:21 pgsql Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/utils/adt/char.c,v 1.43 2005/10/15 02:49:28 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -187,9 +187,9 @@ text_char(PG_FUNCTION_ARGS)
|
||||
char result;
|
||||
|
||||
/*
|
||||
* An empty input string is converted to \0 (for consistency with
|
||||
* charin). If the input is longer than one character, the excess data
|
||||
* is silently discarded.
|
||||
* An empty input string is converted to \0 (for consistency with charin).
|
||||
* If the input is longer than one character, the excess data is silently
|
||||
* discarded.
|
||||
*/
|
||||
if (VARSIZE(arg1) > VARHDRSZ)
|
||||
result = *(VARDATA(arg1));
|
||||
|
Reference in New Issue
Block a user