1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-08 11:42:09 +03:00

Clean up leftover bugs from recent COPY feature patch --- missed

required changes to copyfuncs/equalfuncs.
This commit is contained in:
Tom Lane
2002-08-19 00:40:15 +00:00
parent 5f6a27f8f9
commit f4ad5e8d18
4 changed files with 9 additions and 6 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.163 2002/08/15 16:36:02 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.164 2002/08/19 00:40:14 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@ -1513,7 +1513,7 @@ CopyGetAttnums(Relation rel, List *attnamelist)
foreach(l, attnamelist)
{
char *name = strVal(lfirst(l));
char *name = ((Ident *) lfirst(l))->name;
int attnum;
/* Lookup column name, elog on failure */