unexpected error " tables can have at most 1600 columns"

From: "Day, David" <dday(at)redcom(dot)com>
To: "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org>
Subject: unexpected error " tables can have at most 1600 columns"
Date: 2015-04-13 15:57:57
Message-ID: 401084E5E73F4241A44F3C9E6FD79428011618716D@exch-01
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Situation

I have a co-developer installing a new Virtual Machine and encountering a postgres error during the installation.
One of our SQL patch files is failing unexpectedly.

The patch is attempting to add columns to a table, The table involved currently has only 2 columns,
Interactively I can generate the same error in his current state.

psql -h ohio -U redcom ace_db
psql (9.3.6)
Type "help" for help.

ace_db=# select * from log.conference_history;
conf_id | max_size
---------+----------
(0 rows)

ace_db=# ALTER TABLE log.conference_history ADD talker_limit integer DEFAULT 0;
ERROR: tables can have at most 1600 columns
ace_db=#
ace_db=#

Puzzled ?

Any thoughts ?

Regards

Dave Day

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Pavel Stehule 2015-04-13 16:05:48 Re: unexpected error " tables can have at most 1600 columns"
Previous Message Ramesh T 2015-04-13 15:55:09 Re: Pgagent