Skip Menu |

This queue is for tickets about the Text-CSV CPAN distribution.

Report information
The Basics
Id: 101663
Status: resolved
Priority: 0/
Queue: Text-CSV

People
Owner: Nobody in particular
Requestors: robert.day [...] bankofamerica.com
Cc:
AdminCc:

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



Subject: getline_all with more than 123 lines is broken
Date: Wed, 21 Jan 2015 17:17:55 +0000
To: "bug-Text-CSV [...] rt.cpan.org" <bug-Text-CSV [...] rt.cpan.org>
From: "Day, Robert" <robert.day [...] bankofamerica.com>
Show quoted text
> perl -v
This is perl 5, version 12, subversion 4 (v5.12.4) built for i686-linux Show quoted text
> uname -a
Linux xxx 2.6.32-358.18.1.el6.x86_64 #1 SMP Fri Aug 2 17:04:38 EDT 2013 x86_64 x86_64 x86_64 GNU/Linux # Create test CSV files: Show quoted text
> perl -E 'say $_ for 1 .. 123' > line_123.csv
Show quoted text
> perl -E 'say $_ for 1 .. 124' > line_124.csv
# This returns an array ref, as expected: Show quoted text
> perl -MText::CSV -E '$csv = Text::CSV->new; open $fh, "<line_123.csv"; say $csv; say $csv->getline_all($fh);'
Text::CSV=HASH(0x8e332b8) ARRAY(0x8d6ad68) # This returns the Text::CSV object: Show quoted text
> perl -MText::CSV -E '$csv = Text::CSV->new; open $fh, "<line_124.csv"; say $csv; say $csv->getline_all($fh);'
Text::CSV=HASH(0x96e32b0) Text::CSV=HASH(0x96e32b0) ---------------------------------------------------------------------- This message, and any attachments, is for the intended recipient(s) only, may contain information that is privileged, confidential and/or proprietary and subject to important terms and conditions available at http://www.bankofamerica.com/emaildisclaimer. If you are not the intended recipient, please delete this message.
Subject: RE: [rt.cpan.org #101663] AutoReply: getline_all with more than 123 lines is broken
Date: Wed, 21 Jan 2015 17:25:29 +0000
To: "bug-Text-CSV [...] rt.cpan.org" <bug-Text-CSV [...] rt.cpan.org>
From: "Day, Robert" <robert.day [...] bankofamerica.com>
More information: Show quoted text
> perl -MText::CSV -E 'say $Text::CSV::VERSION'
1.21 Show quoted text
> perl -MText::CSV_XS -E 'say $Text::CSV_XS::VERSION'
0.86 Show quoted text
> perl -MText::CSV_PP -E 'say $Text::CSV_PP::VERSION'
1.29 Thanks ---------------------------------------------------------------------- This message, and any attachments, is for the intended recipient(s) only, may contain information that is privileged, confidential and/or proprietary and subject to important terms and conditions available at http://www.bankofamerica.com/emaildisclaimer. If you are not the intended recipient, please delete this message.
On 2015-01-21 12:25:51, robert.day@bankofamerica.com wrote: Show quoted text
> More information: >
> > perl -MText::CSV -E 'say $Text::CSV::VERSION'
> 1.21 >
> > perl -MText::CSV_XS -E 'say $Text::CSV_XS::VERSION'
> 0.86 >
> > perl -MText::CSV_PP -E 'say $Text::CSV_PP::VERSION'
> 1.29
Which are not the latest versions --- so can you try to upgrade?
Subject: RE: [rt.cpan.org #101663] getline_all with more than 123 lines is broken
Date: Wed, 21 Jan 2015 21:59:08 +0000
To: "bug-Text-CSV [...] rt.cpan.org" <bug-Text-CSV [...] rt.cpan.org>
From: "Day, Robert" <robert.day [...] bankofamerica.com>
I can't upgrade in our work environment, but I can try later from a personal machine. Thanks Show quoted text
-----Original Message----- From: Slaven_Rezic via RT [mailto:bug-Text-CSV@rt.cpan.org] Sent: Wednesday, January 21, 2015 2:35 PM To: Day, Robert Subject: [rt.cpan.org #101663] getline_all with more than 123 lines is broken <URL: https://rt.cpan.org/Ticket/Display.html?id=101663 > On 2015-01-21 12:25:51, robert.day@bankofamerica.com wrote:
> More information: >
> > perl -MText::CSV -E 'say $Text::CSV::VERSION'
> 1.21 >
> > perl -MText::CSV_XS -E 'say $Text::CSV_XS::VERSION'
> 0.86 >
> > perl -MText::CSV_PP -E 'say $Text::CSV_PP::VERSION'
> 1.29
Which are not the latest versions --- so can you try to upgrade? ---------------------------------------------------------------------- This message, and any attachments, is for the intended recipient(s) only, may contain information that is privileged, confidential and/or proprietary and subject to important terms and conditions available at http://www.bankofamerica.com/emaildisclaimer. If you are not the intended recipient, please delete this message.
On Thu Jan 22 06:59:27 2015, robert.day@bankofamerica.com wrote: Show quoted text
> I can't upgrade in our work environment, but I can try later from a > personal machine. > > Thanks > > -----Original Message----- > From: Slaven_Rezic via RT [mailto:bug-Text-CSV@rt.cpan.org] > Sent: Wednesday, January 21, 2015 2:35 PM > To: Day, Robert > Subject: [rt.cpan.org #101663] getline_all with more than 123 lines is > broken > > <URL: https://rt.cpan.org/Ticket/Display.html?id=101663 > > > On 2015-01-21 12:25:51, robert.day@bankofamerica.com wrote:
> > More information: > >
> > > perl -MText::CSV -E 'say $Text::CSV::VERSION'
> > 1.21 > >
> > > perl -MText::CSV_XS -E 'say $Text::CSV_XS::VERSION'
> > 0.86 > >
> > > perl -MText::CSV_PP -E 'say $Text::CSV_PP::VERSION'
> > 1.29
> > Which are not the latest versions --- so can you try to upgrade? > > ---------------------------------------------------------------------- > This message, and any attachments, is for the intended recipient(s) > only, may contain information that is privileged, confidential and/or > proprietary and subject to important terms and conditions available at > http://www.bankofamerica.com/emaildisclaimer. If you are not the > intended recipient, please delete this message.
This doesn't happen with the latest versions of Text::CSV/Text::CSV_XS. Please upgrade your modules, from CPAN, or by hand.