Re: BUG #3763: crash after create table with primary key defined

From: admin(at)abp(dot)pl
To: "Simon Riggs" <simon(at)2ndquadrant(dot)com>
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: BUG #3763: crash after create table with primary key defined
Date: 2007-11-20 11:45:28
Message-ID: 33046.82.160.43.194.1195559128.squirrel@poczta.abp.pl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs


Dnia Wt Listopada 20 2007, 12:12, Simon Riggs napisał(a):
> On Tue, 2007-11-20 at 10:12 +0000, migo wrote:
>> The following bug has been logged online:
>>
>> Bug reference: 3763
>> Logged by: migo
>> Email address: admin(at)abp(dot)pl
>> PostgreSQL version: 8.2.4
>> Operating system: Gentoo
>> Description: crash after create table with primary key defined
>> Details:
>>
>> On psql console:
>>
>> => CREATE TABLE phpbb_acl_roles_data ( role_id INT4 DEFAULT '0' NOT
>> NULL
>> CHECK (role_id >= 0), auth_option_id INT4 DEFAULT '0' NOT NULL CHECK
>> (auth_option_id >= 0), auth_setting INT2 DEFAULT '0' NOT NULL, PRIMARY
>> KEY
>> (role_id, auth_option_id) );
>> server closed the connection unexpectedly
>> This probably means the server terminated abnormally
>> before or while processing the request.
>> The connection to the server was lost. Attempting reset: Succeeded.
>> wolni=>
>>
>>
>> In logs after this:
>> Nov 20 11:02:04 www postgres[32757]: [4-1] wolni>NOTICE: CREATE TABLE /
>> PRIMARY KEY will create implicit index "phpbb_acl_roles_data_pkey" for
>> table
>> Nov 20 11:02:04 www postgres[32757]: [4-2] "phpbb_acl_roles_data"
>> Nov 20 11:02:04 www postgres[32758]: [2-1] [unknown]>LOG: connection
>> received: host=[local]
>> Nov 20 11:02:04 www postgres[32758]: [3-1] wolni>LOG: connection
>> authorized: user=wolni database=wolni
>> Nov 20 11:02:04 www postgres[32731]: [2-1] >LOG: server process (PID
>> 32757)
>> was terminated by signal 11
>> Nov 20 11:02:04 www postgres[32731]: [3-1] >LOG: terminating any other
>> active server processes
>> Nov 20 11:02:04 www postgres[32758]: [4-1] wolni>WARNING: terminating
>> connection because of crash of another server process
>
> Looks to me that the process that crashed was not the process that
> issued the CREATE TABLE command. So it could be something else entirely.
>
> Is this behaviour repeatable?

Yes, when i type this create table command allways postgresql crashes in
that same way.

Its strange that when i modify this command to:
"CREATE TABLE phpbb_acl_roles_data ( role_id INT4 DEFAULT '0' NOT
NULL CHECK (role_id >= 0), auth_option_id INT4 DEFAULT '0' NOT NULL CHECK
(auth_option_id >= 0), auth_setting INT2 DEFAULT '0' NOT NULL );"
(PRIMARY KEY option cuted off) query works fine.

Regards,
--
Tomasz

Browse pgsql-bugs by date

  From Date Subject
Next Message Heikki Linnakangas 2007-11-20 11:46:26 Re: BUG #3763: crash after create table with primary keydefined
Previous Message Simon Riggs 2007-11-20 11:12:34 Re: BUG #3763: crash after create table with primary key defined