Details
-
Bug
-
Resolution: Unresolved
-
Major - P3
-
None
-
None
-
OS:
node.js / npm versions:
Additional info:
-
3
Description
Suppose you have a CSV file:
foo[0],foo[1]
|
a,b
|
When importing that will become a collection with one document like:
{ foo: ['a', 'b'] }
|
Suppose you have a CSV file like:
foo[1000000]
|
a
|
That should probably not result in an array with 1 million elements.