diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2022-04-07 23:42:13 +0200 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2022-04-07 23:42:13 +0200 |
commit | a90641eac24dfc8889122d88eb7f482cd3db8b39 (patch) | |
tree | 2504b842babaeceb8bf9f29a700c27fe5fa6a55d /src/include/executor/execPartition.h | |
parent | 3e707fbb4009e9ac1d0e8b78b7af9f3f03f4cf1a (diff) | |
download | postgresql-a90641eac24dfc8889122d88eb7f482cd3db8b39.tar.gz postgresql-a90641eac24dfc8889122d88eb7f482cd3db8b39.zip |
Revert "Rewrite some RI code to avoid using SPI"
This reverts commit 99392cdd78b788295e52b9f4942fa11992fd5ba9.
We'd rather rewrite ri_triggers.c as a whole rather than piecemeal.
Discussion: https://postgr.es/m/E1ncXX2-000mFt-Pe@gemulon.postgresql.org
Diffstat (limited to 'src/include/executor/execPartition.h')
-rw-r--r-- | src/include/executor/execPartition.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/include/executor/execPartition.h b/src/include/executor/execPartition.h index cbe1d996e6b..708435e9528 100644 --- a/src/include/executor/execPartition.h +++ b/src/include/executor/execPartition.h @@ -31,12 +31,6 @@ extern ResultRelInfo *ExecFindPartition(ModifyTableState *mtstate, EState *estate); extern void ExecCleanupTupleRouting(ModifyTableState *mtstate, PartitionTupleRouting *proute); -extern Relation ExecGetLeafPartitionForKey(Relation root_rel, - int key_natts, - const AttrNumber *key_attnums, - Datum *key_vals, char *key_nulls, - Oid root_idxoid, int lockmode, - Oid *leaf_idxoid); /* |