Re: table names seem identical

Поиск
Список
Период
Сортировка
От Ray Stell
Тема Re: table names seem identical
Дата
Msg-id 20120307182611.GC27195@cns.vt.edu
обсуждение исходный текст
Ответ на Re: table names seem identical  (Walter Hurry <walterhurry@lavabit.com>)
Список pgsql-admin
On Wed, Mar 07, 2012 at 05:41:41PM +0000, Walter Hurry wrote:
> On Wed, 07 Mar 2012 10:39:48 -0500, Ray Stell wrote:
>
> misc=# create table test1(flag varchar(1));
> CREATE TABLE
> misc=# create table "test1 "(flag varchar(1));
> CREATE TABLE



yeah, that is the case, the \z output is truncated it seems:

 Schema |         Name          | Type  | Access privileges | Column access privileges
--------+-----------------------+-------+-------------------+--------------------------
 public | c3p0_connection_test  | table |                   |
 public | c3p0_connection_test  | table |                   |
(2 rows)


oamp=# select * from pg_tables where tablename = 'c3p0_connection_test ';
 schemaname |       tablename       | tableowner | tablespace | hasindexes | hasrules | hastriggers
------------+-----------------------+------------+------------+------------+----------+-------------
 public     | c3p0_connection_test  | admin      |            | f          | f        | f
(1 row)

oamp=# select * from pg_tables where tablename = 'c3p0_connection_test';
 schemaname |      tablename       | tableowner | tablespace | hasindexes | hasrules | hastriggers
------------+----------------------+------------+------------+------------+----------+-------------
 public     | c3p0_connection_test | admin      |            | f          | f        | f
(1 row)

В списке pgsql-admin по дате отправления:

Предыдущее
От: "Kevin Grittner"
Дата:
Сообщение: Re: pg_attribute file in PostgreSQL 9.0
Следующее
От: "Campbell, Lance"
Дата:
Сообщение: Re: logging issue