Re: [HACKERS] What was the exact version of PostgreSQL where the column name length changed from 31 to 63 characters?

2011-04-26 Thread Dann Corbit
> -Original Message- > From: Jeff Davis [mailto:pg...@j-davis.com] > Sent: Tuesday, April 26, 2011 11:44 AM > To: Dann Corbit > Cc: pgsql-hackers@postgresql.org > Subject: Re: [HACKERS] What was the exact version of PostgreSQL where > the column name length changed fro

Re: [HACKERS] What was the exact version of PostgreSQL where the column name length changed from 31 to 63 characters?

2011-04-26 Thread Jeff Davis
On Tue, 2011-04-26 at 18:35 +, Dann Corbit wrote: > I need to know so that I can handle cases like: > > Create table foolongcols( > nevermindthefurthermorejustpleadinselfdefense char(5), > nevermindthefurthermorejustpleadguilty char(5) > ); > > I assume that other object names (t

Re: [HACKERS] What was the exact version of PostgreSQL where the column name length changed from 31 to 63 characters?

2011-04-26 Thread Merlin Moncure
On Tue, Apr 26, 2011 at 1:35 PM, Dann Corbit wrote: > I need to know so that I can handle cases like: > > Create table foolongcols( >        nevermindthefurthermorejustpleadinselfdefense char(5), >        nevermindthefurthermorejustpleadguilty char(5) > ); > > I assume that other object names (tab

[HACKERS] What was the exact version of PostgreSQL where the column name length changed from 31 to 63 characters?

2011-04-26 Thread Dann Corbit
I need to know so that I can handle cases like: Create table foolongcols( nevermindthefurthermorejustpleadinselfdefense char(5), nevermindthefurthermorejustpleadguilty char(5) ); I assume that other object names (table name, function name, etc.) are similarly affected. Is that