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
message: `"${file.name}" has ${rows.length.toLocaleString()} rows, which exceeds this plan's limit of ${planLimits.maxRowsPerTable.toLocaleString()} rows per table.`,
constcreatedMessage=`Created table "${table.name}" with ${columns.length} columns and ${inserted.toLocaleString()} rows from "${file.name}"`
805
+
constmessage=
806
+
droppedRows>0
807
+
? `${createdMessage}. Dropped ${droppedRows.toLocaleString()} row(s) that exceed this plan's limit of ${planLimits.maxRowsPerTable.toLocaleString()} rows per table.`
808
+
: createdMessage
809
+
807
810
return{
808
811
success: true,
809
-
message: `Created table "${table.name}" with ${columns.length} columns and ${inserted} rows from "${file.name}"`,
0 commit comments