diff options
author | Bruce Momjian <bruce@momjian.us> | 2007-02-17 01:51:42 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2007-02-17 01:51:42 +0000 |
commit | f7a51b7a0d09bf11342b833347bc275eb4d102f4 (patch) | |
tree | fea3a473de7a04ca7a222d6c35c65e0139e6b255 /src/backend/utils/adt/formatting.c | |
parent | c6ed4ead010395fdaeb2a5b83d425fdc30857c9e (diff) | |
download | postgresql-f7a51b7a0d09bf11342b833347bc275eb4d102f4.tar.gz postgresql-f7a51b7a0d09bf11342b833347bc275eb4d102f4.zip |
Cleanup of to_char() patch.
Brendan Jurd
Diffstat (limited to 'src/backend/utils/adt/formatting.c')
-rw-r--r-- | src/backend/utils/adt/formatting.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/backend/utils/adt/formatting.c b/src/backend/utils/adt/formatting.c index 5a13a4c4f4c..0a746a0738c 100644 --- a/src/backend/utils/adt/formatting.c +++ b/src/backend/utils/adt/formatting.c @@ -1,7 +1,7 @@ /* ----------------------------------------------------------------------- * formatting.c * - * $PostgreSQL: pgsql/src/backend/utils/adt/formatting.c,v 1.126 2007/02/16 10:55:47 petere Exp $ + * $PostgreSQL: pgsql/src/backend/utils/adt/formatting.c,v 1.127 2007/02/17 01:51:42 momjian Exp $ * * * Portions Copyright (c) 1999-2007, PostgreSQL Global Development Group @@ -16,8 +16,9 @@ * Cache & Memory: * Routines use (itself) internal cache for format pictures. * - * The cache uses a static buffers and is persistent across transactions. - * If format-picture is bigger than cache buffer, parser is called always. + * The cache uses a static buffer and is persistent across transactions. If + * the format-picture is bigger than the cache buffer, the parser is called + * always. * * NOTE for Number version: * All in this version is implemented as keywords ( => not used |