Submitted as #*5352 bug.*
2010/2/26 Oleg Serov
> Up. Anybody will answer on this bug report?
>
>
> 2009/1/21 Oleg Serov
>
>> Sorry, but is not important, i forgot to remove original table name
>> "chunk_ad", but is not affected to the bug..
>>
>> 2009/1/21 Oleg Serov :
>> > Here is an example:
Up. Anybody will answer on this bug report?
2009/1/21 Oleg Serov
> Sorry, but is not important, i forgot to remove original table name
> "chunk_ad", but is not affected to the bug..
>
> 2009/1/21 Oleg Serov :
> > Here is an example:
> >
> > CREATE TABLE test2 (
> >id BIGINT,
> >
Here is an example:
CREATE TABLE test2 (
id BIGINT,
chunk_id BIGINT
);
CREATE TABLE test1 (
id BIGINT
);
CREATE OR REPLACE FUNCTION "bug" () RETURNS pg_catalog.void AS
$body$
DECLARE
row_test1 test1%rowtype;
row_test2 test2%rowtype;
BEGIN
SELECT test1, chunk_ad
Sorry, but is not important, i forgot to remove original table name
"chunk_ad", but is not affected to the bug..
2009/1/21 Oleg Serov :
> Here is an example:
>
> CREATE TABLE test2 (
>id BIGINT,
>chunk_id BIGINT
> );
> CREATE TABLE test1 (
>id BIGINT
> );
>
> CREATE OR REP