public
Description: An experimental implementation of MapReduce for perl
Clone URL: git://github.com/naoya/mapreduce-lite.git
fixed Text::CSV optional parameters
naoya (author)
Mon Jun 09 03:32:48 -0700 2008
commit  a6573e68703b93c508fc6f48604cc6493033e7c2
tree    57baff300981d0309d6df9ed52839108b41a912a
parent  d9136b3045098045a3eaefffa700a73375618f9b
...
14
15
16
17
 
18
19
20
...
14
15
16
 
17
18
19
20
0
@@ -14,7 +14,7 @@ use MapReduce::Lite::Conduit::Iterator;
0
 has 'csv' => (
0
     is => 'ro',
0
     default => sub {
0
- Text::CSV_XS->new;
0
+ Text::CSV_XS->new({ binary => 1 });
0
     }
0
 );
0
 
...
9
10
11
12
 
13
14
15
...
9
10
11
 
12
13
14
15
0
@@ -9,7 +9,7 @@ use Params::Validate qw/validate_pos/;
0
 has csv => (
0
     is => 'ro',
0
     default => sub {
0
- Text::CSV_XS->new;
0
+ Text::CSV_XS->new({ binary => 1 });
0
     }
0
 );
0
 

Comments

    No one has commented yet.