[HACKERS] ERROR: record type has not been registered

2010-01-03 Thread Peter Eisentraut
This was a random attempt to figure something out about min/max on row types: = select min(a) from (values (row(1,2,3)), (row(3,4,5))) as x(a); ERROR: 42809: record type has not been registered LOCATION: lookup_rowtype_tupdesc_internal, typcache.c:341 I don't know whether it's supposed to

Re: [HACKERS] ERROR: record type has not been registered

2010-01-03 Thread Tom Lane
Peter Eisentraut pete...@gmx.net writes: This was a random attempt to figure something out about min/max on row types: = select min(a) from (values (row(1,2,3)), (row(3,4,5))) as x(a); ERROR: 42809: record type has not been registered LOCATION: lookup_rowtype_tupdesc_internal,

Re: [HACKERS] ERROR: record type has not been registered on CVS head

2006-04-08 Thread Tom Lane
Stefan Kaltenbrunner [EMAIL PROTECTED] writes: While trying to help somebody on IRC with slow queries against information_schema i stumbled across the following EXPLAIN buglet (much reduced from the original one and does not make a lot of sense therefore): foo=# explain SELECT * FROM

[HACKERS] ERROR: record type has not been registered on CVS head

2006-03-12 Thread Stefan Kaltenbrunner
While trying to help somebody on IRC with slow queries against information_schema i stumbled across the following EXPLAIN buglet (much reduced from the original one and does not make a lot of sense therefore): foo=# explain SELECT * FROM information_schema.constraint_column_usage JOIN