forked from github/dataease
fix: csv 预览1000条数据
This commit is contained in:
parent
b1aafe0447
commit
fbe709c5ae
@ -2427,7 +2427,7 @@ public class DataSetTableService {
|
||||
int num = 1;
|
||||
String line;
|
||||
while ((line = reader.readLine()) != null) {
|
||||
if (num > 100) {
|
||||
if (num > 1000) {
|
||||
break;
|
||||
}
|
||||
data.add(Arrays.asList(line.split(",")));
|
||||
|
Loading…
Reference in New Issue
Block a user