mirror of
https://github.com/postgres/postgres.git
synced 2025-06-22 02:52:08 +03:00
Use generateClonedIndexStmt to propagate CREATE INDEX to partitions.
When instantiating an existing partitioned index for a new child partition, we use generateClonedIndexStmt to build a suitable IndexStmt to pass to DefineIndex. However, when DefineIndex needs to recurse to instantiate a newly created partitioned index on an existing child partition, it was doing copyObject on the given IndexStmt and then applying a bunch of ad-hoc fixups. This has a number of problems, primarily that it implies fresh lookups of referenced objects such as opclasses and collations. Since commit2af07e2f7
caused DefineIndex to restrict search_path internally, those lookups could fail or deliver different results than the original one. We can avoid those problems and save a few dozen lines of code by using generateClonedIndexStmt in this code path too. Another thing this fixes is incorrect propagation of parent-index comments to child indexes (because the copyObject approach copies the idxcomment field while generateClonedIndexStmt doesn't). I had noticed this in connection with commitc01eb619a
, but not run the problem to ground. I'm tempted to back-patch this further than v17, but the only thing it's known to fix in older branches is the comment issue, which is pretty minor and doesn't seem worth the risk of introducing new issues in stable branches. (If anyone does care about that, clearing idxcomment in the copied IndexStmt would be a safer fix.) Per bug #18637 from usamoi. Back-patch to v17 where the search_path change came in. Discussion: https://postgr.es/m/18637-f51e314546e3ba2a@postgresql.org
This commit is contained in:
@ -51,6 +51,7 @@
|
||||
#include "optimizer/optimizer.h"
|
||||
#include "parser/parse_coerce.h"
|
||||
#include "parser/parse_oper.h"
|
||||
#include "parser/parse_utilcmd.h"
|
||||
#include "partitioning/partdesc.h"
|
||||
#include "pgstat.h"
|
||||
#include "rewrite/rewriteManip.h"
|
||||
@ -1465,55 +1466,20 @@ DefineIndex(Oid tableId,
|
||||
*/
|
||||
if (!found)
|
||||
{
|
||||
IndexStmt *childStmt = copyObject(stmt);
|
||||
bool found_whole_row;
|
||||
ListCell *lc;
|
||||
IndexStmt *childStmt;
|
||||
ObjectAddress childAddr;
|
||||
|
||||
/*
|
||||
* We can't use the same index name for the child index,
|
||||
* so clear idxname to let the recursive invocation choose
|
||||
* a new name. Likewise, the existing target relation
|
||||
* field is wrong, and if indexOid or oldNumber are set,
|
||||
* they mustn't be applied to the child either.
|
||||
* Build an IndexStmt describing the desired child index
|
||||
* in the same way that we do during ATTACH PARTITION.
|
||||
* Notably, we rely on generateClonedIndexStmt to produce
|
||||
* a search-path-independent representation, which the
|
||||
* original IndexStmt might not be.
|
||||
*/
|
||||
childStmt->idxname = NULL;
|
||||
childStmt->relation = NULL;
|
||||
childStmt->indexOid = InvalidOid;
|
||||
childStmt->oldNumber = InvalidRelFileNumber;
|
||||
childStmt->oldCreateSubid = InvalidSubTransactionId;
|
||||
childStmt->oldFirstRelfilelocatorSubid = InvalidSubTransactionId;
|
||||
|
||||
/*
|
||||
* Adjust any Vars (both in expressions and in the index's
|
||||
* WHERE clause) to match the partition's column numbering
|
||||
* in case it's different from the parent's.
|
||||
*/
|
||||
foreach(lc, childStmt->indexParams)
|
||||
{
|
||||
IndexElem *ielem = lfirst(lc);
|
||||
|
||||
/*
|
||||
* If the index parameter is an expression, we must
|
||||
* translate it to contain child Vars.
|
||||
*/
|
||||
if (ielem->expr)
|
||||
{
|
||||
ielem->expr =
|
||||
map_variable_attnos((Node *) ielem->expr,
|
||||
1, 0, attmap,
|
||||
InvalidOid,
|
||||
&found_whole_row);
|
||||
if (found_whole_row)
|
||||
elog(ERROR, "cannot convert whole-row table reference");
|
||||
}
|
||||
}
|
||||
childStmt->whereClause =
|
||||
map_variable_attnos(stmt->whereClause, 1, 0,
|
||||
attmap,
|
||||
InvalidOid, &found_whole_row);
|
||||
if (found_whole_row)
|
||||
elog(ERROR, "cannot convert whole-row table reference");
|
||||
childStmt = generateClonedIndexStmt(NULL,
|
||||
parentIndex,
|
||||
attmap,
|
||||
NULL);
|
||||
|
||||
/*
|
||||
* Recurse as the starting user ID. Callee will use that
|
||||
|
Reference in New Issue
Block a user