Skip Menu |

This queue is for tickets about the DBIx-SQLEngine CPAN distribution.

Report information
The Basics
Id: 5672
Status: resolved
Priority: 0/
Queue: DBIx-SQLEngine

People
Owner: Nobody in particular
Requestors: ron [...] savage.net.au
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.012
Fixed in: (no value)



Subject: Don't multiply by the space char
--- SQLEngine.pm.bak Mon Mar 15 14:03:58 2004 +++ SQLEngine.pm Mon Mar 15 14:03:55 2004 @@ -1345,7 +1345,7 @@ return "PRIMARY KEY ($name)"; } else { return ' ' . $name . - ' ' x ( ( length($name) > 31 ) ? ' ' : ( 32 - length($name) ) ) . + ' ' x ( ( length($name) > 31 ) ? 50 : ( 32 - length($name) ) ) . $type . ( $column->{required} ? " not null" : '' ); }