Skip Menu |

This queue is for tickets about the SQL-Abstract-Limit CPAN distribution.

Report information
The Basics
Id: 34847
Status: resolved
Priority: 0/
Queue: SQL-Abstract-Limit

People
Owner: Nobody in particular
Requestors: batman900 [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: 0.142



Subject: Small bug in select
Date: Thu, 10 Apr 2008 15:18:32 -0700
To: bug-SQL-Abstract-Limit [...] rt.cpan.org
From: "Matt Spear" <batman900 [...] gmail.com>
Hey, I was using ur code today and I noticed that on line 157 of SQL::Abstract::Limit you had: my $table = $self->_table(shift); and as SQL::Abstract already quotes the table this will cause a double-quoting of the table name (when quote_char is specified for the constructor). To fix it just change the line to: my $table = shift; Cheers! Matt Spear batman900@gmail.com
Subject: Tablename is re-quoted
Terrible bug name. However, it should be noted that the bug is fatal and is a one-line fix. At least, assuming it doesn't break any other functionality in the tests.
From: dekimsey [...] gmail.com
I just added the fix myself using gitpan, tagged as 0.141_1. http://github.com/dekimsey/SQL-Abstract-Limit/tree/0.141_1
Fixed with v0.142. Thanks for reporting.