Re: BUG #13784: cannot create table with table name testtbl

From: Thomas Kellerer <spam_eater(at)gmx(dot)net>
To: pgsql-bugs(at)postgresql(dot)org
Subject: Re: BUG #13784: cannot create table with table name testtbl
Date: 2015-11-26 06:54:13
Message-ID: n36aaj$eff$1@ger.gmane.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

biznixcn(at)gmail(dot)com schrieb am 25.11.2015 um 00:45:
> The following bug has been logged on the website:
>
> Bug reference: 13784
> Logged by: biznixcn
> Email address: biznixcn(at)gmail(dot)com
> PostgreSQL version: 9.4.5
> Operating system: Ubuntu 14.04.3 docker container
> Description:
>
> As long as the name of table I wanted to create is 'testtbl', the query will
> run forever.
> CREATE TABLE testtbl (
> did integer,
> name varchar(40) UNIQUE
> );
>
> No error message

You probably have a second transaction that has run a "CREATE TABLE testtbl" but has not yet committed that.

Thomas

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message Mark Kirkwood 2015-11-26 08:31:13 Recovery conflict message lost in user session for 9.3
Previous Message Pedro Gimeno 2015-11-25 17:28:18 Re: BUG #13783: 'create database test owner testowner' as 'postgres' leaves test.public owned by postgres