Mysterious column "name"

Lists: pgsql-sql
From: Nikolay <wheelly(at)gmail(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: Mysterious column "name"
Date: 2011-08-04 14:50:26
Message-ID: 4E3AB1B2.5040704@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-sql

Good day!

I found one strange results for sql-query.

create table testtable (
f1 int,
f2 int
);

insert into testtable(f1, f2) values(1, 100);

select testtable.* from testtable; // it is ok

select testtable from testtable; // it is ok

select testtable.name from testtable; // returns strange result.
-----------------------------------------------------------------
name
name
-----------------------------------------------------------------
"(1,100)"
-----------------------------------------------------------------
no error message about nonexistent column.
Result is similar to second variant, but pgAdmin3 shows not full record.

for long table the result is truncated
select aaaaaa."name"
from yc_accounts aaaaaa
-----------------------------------------------------------------
name
name
-----------------------------------------------------------------
"(1154,81,testtter,"","","","","","","","","",donald22(at)126(dot)com,""
-----------------------------------------------------------------

The same results on two servers.
PostgreSQL 9.0.4 on x86_64-pc-linux-gnu, compiled by GCC gcc-4.4.real
(Debian 4.4.5-8) 4.4.5, 64-bit

PostgreSQL 9.0.4 on x86_64-pc-linux-gnu, compiled by GCC gcc-4.5.real
(Ubuntu/Linaro 4.5.2-8ubuntu4) 4.5.2, 64-bit

Is it a feature or a bug? I didn't found information in documentation
about this.

Best regards.
Nikolay.


From: "Oliveiros d'Azevedo Cristina" <oliveiros(dot)cristina(at)marktest(dot)pt>
To: "Nikolay" <wheelly(at)gmail(dot)com>, <pgsql-sql(at)postgresql(dot)org>
Subject: Re: Mysterious column "name"
Date: 2011-08-09 15:34:26
Message-ID: 80B8AE0F6EA345ECB04802EB381EF1B1@marktestcr.marktest.pt
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-sql

Strange...

Tables have hidden columns but AFAIK, "name" is not one of them...

http://www.postgresql.org/docs/9.0/interactive/ddl-system-columns.html

Best,
Oliveiros

----- Original Message -----
From: "Nikolay" <wheelly(at)gmail(dot)com>
To: <pgsql-sql(at)postgresql(dot)org>
Sent: Thursday, August 04, 2011 3:50 PM
Subject: [SQL] Mysterious column "name"

> Good day!
>
> I found one strange results for sql-query.
>
> create table testtable (
> f1 int,
> f2 int
> );
>
> insert into testtable(f1, f2) values(1, 100);
>
> select testtable.* from testtable; // it is ok
>
> select testtable from testtable; // it is ok
>
> select testtable.name from testtable; // returns strange result.
> -----------------------------------------------------------------
> name
> name
> -----------------------------------------------------------------
> "(1,100)"
> -----------------------------------------------------------------
> no error message about nonexistent column.
> Result is similar to second variant, but pgAdmin3 shows not full record.
>
> for long table the result is truncated
> select aaaaaa."name"
> from yc_accounts aaaaaa
> -----------------------------------------------------------------
> name
> name
> -----------------------------------------------------------------
> "(1154,81,testtter,"","","","","","","","","",donald22(at)126(dot)com,""
> -----------------------------------------------------------------
>
> The same results on two servers.
> PostgreSQL 9.0.4 on x86_64-pc-linux-gnu, compiled by GCC gcc-4.4.real
> (Debian 4.4.5-8) 4.4.5, 64-bit
>
> PostgreSQL 9.0.4 on x86_64-pc-linux-gnu, compiled by GCC gcc-4.5.real
> (Ubuntu/Linaro 4.5.2-8ubuntu4) 4.5.2, 64-bit
>
> Is it a feature or a bug? I didn't found information in documentation
> about this.
>
>
> Best regards.
> Nikolay.
>
> --
> Sent via pgsql-sql mailing list (pgsql-sql(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-sql


From: Steve Crawford <scrawford(at)pinpointresearch(dot)com>
To: Oliveiros d'Azevedo Cristina <oliveiros(dot)cristina(at)marktest(dot)pt>
Cc: Nikolay <wheelly(at)gmail(dot)com>, pgsql-sql(at)postgresql(dot)org
Subject: Re: Mysterious column "name"
Date: 2011-08-09 16:00:52
Message-ID: 4E4159B4.2050304@pinpointresearch.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-sql

On 08/09/2011 08:34 AM, Oliveiros d'Azevedo Cristina wrote:
> Strange...
>
> Tables have hidden columns but AFAIK, "name" is not one of them...
>
> http://www.postgresql.org/docs/9.0/interactive/ddl-system-columns.html
>
> ...
>
>> Good day!
>>
>> I found one strange results for sql-query.
>>
>> create table testtable (
>> f1 int,
>> f2 int
>> );
>>
>> insert into testtable(f1, f2) values(1, 100);
>>
>> select testtable.* from testtable; // it is ok
>>
>> select testtable from testtable; // it is ok
>>
>> select testtable.name from testtable; // returns strange result.
>> -----------------------------------------------------------------
>> name
>> name
>> -----------------------------------------------------------------
>> "(1,100)"
>> -----------------------------------------------------------------
>> no error message about nonexistent column.
>> Result is similar to second variant, but pgAdmin3 shows not full record.
>> ...
>
See http://www.postgresql.org/docs/9.0/static/rowtypes.html on composite
data types and scroll to section 8.15.3.

Cheers,
Steve


From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Nikolay <wheelly(at)gmail(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Mysterious column "name"
Date: 2011-08-09 16:04:08
Message-ID: 19429.1312905848@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-sql

Nikolay <wheelly(at)gmail(dot)com> writes:
> select testtable.name from testtable; // returns strange result.

See
http://archives.postgresql.org/pgsql-bugs/2010-10/msg00269.php

This will change in 9.1:
http://git.postgresql.org/gitweb/?p=postgresql.git&a=commitdiff&h=543d22fc7

regards, tom lane