cache lookup failed error for partition key with custom opclass

Started by Rushabh Lathiaover 8 years ago5 messageshackers
Jump to latest
#1Rushabh Lathia
rushabh.lathia@gmail.com

Hi,

Consider the following test:

CREATE OR REPLACE FUNCTION dummy_binaryint4(a int4, b int4) RETURNS int4 AS
$$ BEGIN RETURN a; END; $$ LANGUAGE 'plpgsql' IMMUTABLE;

CREATE OPERATOR CLASS custom_opclass2 FOR TYPE int2 USING BTREE AS OPERATOR
1 = , FUNCTION 1 dummy_binaryint4(int4, int4);

t=# CREATE TABLE list_tab(a int2, b int) PARTITION BY LIST (a
custom_opclass2);
*ERROR: cache lookup failed for function 0*

In the above test creating OP class type int2, but passing the function of
int4
type. During CREATE PARTITION, ComputePartitionAttrs() able to resolve the
opclass
for the partition key (partition key type is int2), but while looking for a
method for the int2 -
it unable to find the proper function and end up with the cache lookup
failed error.
Error coming from RelationBuildPartitionKey().

I think overall this is expected but still error can be better - like all
the other
places where get_opfamily_proc() unable to find valid function oid.

PFA patch, where added elog() to add the error message same as all other
places.

Thanks,
Rushabh Lathia
www.EnterpriseDB.com

Attachments:

cache_lookup_fail.patchtext/x-patch; charset=US-ASCII; name=cache_lookup_fail.patchDownload+4-0
#2Tom Lane
tgl@sss.pgh.pa.us
In reply to: Rushabh Lathia (#1)
Re: cache lookup failed error for partition key with custom opclass

Rushabh Lathia <rushabh.lathia@gmail.com> writes:

PFA patch, where added elog() to add the error message same as all other
places.

Some looking around says that this *isn't* the only place that just
blithely assumes that it will find an opfamily entry. But I agree
that not checking for that isn't up to project standards.

regards, tom lane

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#3Rushabh Lathia
rushabh.lathia@gmail.com
In reply to: Tom Lane (#2)
Re: cache lookup failed error for partition key with custom opclass

On Mon, Jul 24, 2017 at 7:23 PM, Tom Lane <tgl@sss.pgh.pa.us> wrote:

Rushabh Lathia <rushabh.lathia@gmail.com> writes:

PFA patch, where added elog() to add the error message same as all other
places.

Some looking around says that this *isn't* the only place that just
blithely assumes that it will find an opfamily entry. But I agree
that not checking for that isn't up to project standards.

Thanks Tom.

I go thorough the get_opfamily_proc() in the system and added the
check for InvalidOid.

Thanks,
Rushabh Lathia
www.EnterpriseDB.com

Attachments:

cache_lookup_fail_v2.patchtext/x-patch; charset=US-ASCII; name=cache_lookup_fail_v2.patchDownload+14-0
#4Tom Lane
tgl@sss.pgh.pa.us
In reply to: Rushabh Lathia (#3)
Re: cache lookup failed error for partition key with custom opclass

Rushabh Lathia <rushabh.lathia@gmail.com> writes:

On Mon, Jul 24, 2017 at 7:23 PM, Tom Lane <tgl@sss.pgh.pa.us> wrote:

Some looking around says that this *isn't* the only place that just
blithely assumes that it will find an opfamily entry. But I agree
that not checking for that isn't up to project standards.

I go thorough the get_opfamily_proc() in the system and added the
check for InvalidOid.

Think I did that already, please compare your results with
278cb4341103e967189997985b09981a73e23a34

regards, tom lane

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#5Rushabh Lathia
rushabh.lathia@gmail.com
In reply to: Tom Lane (#4)
Re: cache lookup failed error for partition key with custom opclass

On Tue, Jul 25, 2017 at 7:43 PM, Tom Lane <tgl@sss.pgh.pa.us> wrote:

Rushabh Lathia <rushabh.lathia@gmail.com> writes:

On Mon, Jul 24, 2017 at 7:23 PM, Tom Lane <tgl@sss.pgh.pa.us> wrote:

Some looking around says that this *isn't* the only place that just
blithely assumes that it will find an opfamily entry. But I agree
that not checking for that isn't up to project standards.

I go thorough the get_opfamily_proc() in the system and added the
check for InvalidOid.

Think I did that already, please compare your results with
278cb4341103e967189997985b09981a73e23a34

Thanks Tom.

regards, tom lane

--
Rushabh Lathia