You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to upload a CSV with over 300 columns and I'm getting an unspecified error. When I trim the file down to 200 columns it uploads fine into the platform. Is there some sort of column limit? How do I increase this? This same file was being uploaded in the previous version of cartodb.
The text was updated successfully, but these errors were encountered:
function() { if ( list ) { // First, we save the current length var start = list.length; (function add( args ) { jQuery.each( args, function( _, arg ) { var type = jQuery.type( arg ); if ( type === "function" ) { if ( !options.unique || !self.has( arg ) ) { list.push( arg ); } } else if ( arg && arg.length && type !== "string" ) { // Inspect recursively add( arg ); } }); })( arguments ); // Do we need to add the callbacks to the // current firing batch? if ( firing ) { firingLength = list.length; // With memory, if we're not firing then // we should call right away } else if ( memory ) { firingStart = start; fire( memory ); } } return this; }
Trying to upload a CSV with over 300 columns and I'm getting an unspecified error. When I trim the file down to 200 columns it uploads fine into the platform. Is there some sort of column limit? How do I increase this? This same file was being uploaded in the previous version of cartodb.
The text was updated successfully, but these errors were encountered: