diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-08-25 17:20:01 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-08-25 17:20:01 +0000 |
commit | 58de480999da65ec0fbf256f17800cba89e26dd5 (patch) | |
tree | ff80d7c93f5836bbdfdc0b3c6a5165423856cb83 /src/backend/commands/user.c | |
parent | d46172e4fa930e18768b8b913166108a4909e858 (diff) | |
download | postgresql-58de480999da65ec0fbf256f17800cba89e26dd5.tar.gz postgresql-58de480999da65ec0fbf256f17800cba89e26dd5.zip |
Clean up comments to be careful about the distinction between variable-
width types and varlena types, since with the introduction of CSTRING as
a more-or-less-real type, these concepts aren't identical. I've tried to
use varlena consistently to denote datatypes with typlen = -1, ie, they
have a length word and are potentially TOASTable; while the term variable
width covers both varlena and cstring (and, perhaps, someday other types
with other rules for computing the actual width). No code changes in this
commit except for renaming a couple macros.
Diffstat (limited to 'src/backend/commands/user.c')
-rw-r--r-- | src/backend/commands/user.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/commands/user.c b/src/backend/commands/user.c index 60fc4b733cb..3e8d521ab76 100644 --- a/src/backend/commands/user.c +++ b/src/backend/commands/user.c @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Header: /cvsroot/pgsql/src/backend/commands/user.c,v 1.107 2002/08/05 03:29:17 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/user.c,v 1.108 2002/08/25 17:20:01 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -50,7 +50,7 @@ static List *IdArrayToList(IdList *oldarray); * fputs_quote * * Outputs string in quotes, with double-quotes duplicated. - * We could use quote_ident(), but that expects varlena. + * We could use quote_ident(), but that expects a TEXT argument. */ static void fputs_quote(char *str, FILE *fp) { |