From: Tom Lane Date: Sat, 26 Mar 2005 06:28:59 +0000 (+0000) Subject: Use a bitmapset instead of a list for duplicate-column checking in X-Git-Url: http://waps.l3s.uni-hannover.de/gitweb/?a=commitdiff_plain;h=496179ef38fb5346bd80659b78983e5dd342746e;p=users%2Fbernd%2Fpostgres.git Use a bitmapset instead of a list for duplicate-column checking in checkInsertTargets(). Avoids O(N^2) behavior on wide target lists. --- diff --git a/src/backend/parser/parse_target.c b/src/backend/parser/parse_target.c index a5996d09bb..45adf9cfd6 100644 --- a/src/backend/parser/parse_target.c +++ b/src/backend/parser/parse_target.c @@ -16,6 +16,7 @@ #include "commands/dbcommands.h" #include "miscadmin.h" +#include "nodes/bitmapset.h" #include "nodes/makefuncs.h" #include "parser/parsetree.h" #include "parser/parse_coerce.h" @@ -630,7 +631,8 @@ checkInsertTargets(ParseState *pstate, List *cols, List **attrnos) /* * Do initial validation of user-supplied INSERT column list. */ - List *wholecols = NIL; + Bitmapset *wholecols = NULL; + Bitmapset *partialcols = NULL; ListCell *tl; foreach(tl, cols) @@ -649,21 +651,23 @@ checkInsertTargets(ParseState *pstate, List *cols, List **attrnos) if (col->indirection == NIL) { /* whole column; must not have any other assignment */ - if (list_member_int(*attrnos, attrno)) + if (bms_is_member(attrno, wholecols) || + bms_is_member(attrno, partialcols)) ereport(ERROR, (errcode(ERRCODE_DUPLICATE_COLUMN), errmsg("column \"%s\" specified more than once", name))); - wholecols = lappend_int(wholecols, attrno); + wholecols = bms_add_member(wholecols, attrno); } else { /* partial column; must not have any whole assignment */ - if (list_member_int(wholecols, attrno)) + if (bms_is_member(attrno, wholecols)) ereport(ERROR, (errcode(ERRCODE_DUPLICATE_COLUMN), errmsg("column \"%s\" specified more than once", name))); + partialcols = bms_add_member(partialcols, attrno); } *attrnos = lappend_int(*attrnos, attrno);