|
7 | 7 | * |
8 | 8 | * |
9 | 9 | * IDENTIFICATION |
10 | | - * $Header: /cvsroot/pgsql/src/backend/utils/adt/varchar.c,v 1.19 1998/01/08 03:05:01 momjian Exp $ |
| 10 | + * $Header: /cvsroot/pgsql/src/backend/utils/adt/varchar.c,v 1.20 1998/01/08 03:15:06 momjian Exp $ |
11 | 11 | * |
12 | 12 | *------------------------------------------------------------------------- |
13 | 13 | */ |
@@ -132,7 +132,7 @@ varcharin(char *s, int dummy, int typlen) |
132 | 132 | if (s==NULL) |
133 | 133 | return ((char*)NULL); |
134 | 134 |
|
135 | | -if (typelen==-1)/* we will remove this soon to make compact storage */ |
| 135 | +if (typlen==-1)/* we will remove this soon to make compact storage */ |
136 | 136 | /* change varcharlen at the same time to use VARSIZE */ |
137 | 137 | len=strlen(s)+VARHDRSZ; |
138 | 138 | /*if (typlen != -1 && len > typlen) */ |
|