RE: [HACKERS] Truncation of object names

2001-04-16 Thread Christopher Kings-Lynne
PROTECTED] Subject: Re: [HACKERS] Truncation of object names [EMAIL PROTECTED] (Nathan Myers) writes: On Fri, Apr 13, 2001 at 04:27:15PM -0400, Tom Lane wrote: Have you thought about simply increasing NAMEDATALEN in your installation? If you really are generating names that aren't unique in 31

RE: [HACKERS] Truncation of object names

2001-04-16 Thread Mike Mascari
RE: [HACKERS] Truncation of object names Call me thick as two planks, but when you guys constantly refer to 'schema support' in PostgreSQL, what exactly are you referring to? Chris ---(end of broadcast)--- TIP 6: Have you searched our

[HACKERS] Truncation of object names

2001-04-13 Thread Nathan Myers
On Fri, Apr 13, 2001 at 01:16:43AM -0400, Tom Lane wrote: [EMAIL PROTECTED] (Nathan Myers) writes: We have noticed here also that object (e.g. table) names get truncated in some places and not others. If you create a table with a long name, PG truncates the name and creates a table with

Re: [HACKERS] Truncation of object names

2001-04-13 Thread Tom Lane
[EMAIL PROTECTED] (Nathan Myers) writes: Sorry, false alarm. When I got the test case, it turned out to be the more familiar problem: create table foo_..._bar1 (id1 ...); [notice, "foo_..._bar1" truncated to "foo_..._bar"] create table foo_..._bar (id2 ...); [error,

Re: [HACKERS] Truncation of object names

2001-04-13 Thread Nathan Myers
On Fri, Apr 13, 2001 at 02:54:47PM -0400, Tom Lane wrote: [EMAIL PROTECTED] (Nathan Myers) writes: Sorry, false alarm. When I got the test case, it turned out to be the more familiar problem: create table foo_..._bar1 (id1 ...); [notice, "foo_..._bar1" truncated to

Re: [HACKERS] Truncation of object names

2001-04-13 Thread Tom Lane
[EMAIL PROTECTED] (Nathan Myers) writes: On Fri, Apr 13, 2001 at 04:27:15PM -0400, Tom Lane wrote: Have you thought about simply increasing NAMEDATALEN in your installation? If you really are generating names that aren't unique in 31 characters, that seems like the way to go ... We