File tree Expand file tree Collapse file tree 4 files changed +5
-0
lines changed Expand file tree Collapse file tree 4 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 24
24
25
25
### 1.26.4
26
26
- [ Bug] Using stream.SaveAs will close the Stream automatically when Specifying excelType
27
+ - [ OPT] Optimize Query big file _ IntMappingAlphabet.Count hot loading count (#400 via @CollapseNav )
27
28
28
29
### 1.26.3
29
30
- [ OPT] Export default buffersize from 1024 bytes -> 1024 * 512 bytes
Original file line number Diff line number Diff line change 28
28
29
29
### 1.26.4
30
30
- [ Bug] 使用Stream.SaveAs时指定excelType会自动关闭Stream #I57WMM
31
+ - [ OPT] 减少在读取大文件时 _ IntMappingAlphabet.Count 的调用 (#400 via @CollapseNav )
31
32
32
33
### 1.26.3
33
34
- [ OPT] Export 预设 buffersize 从 1024 bytes -> 1024 * 512 bytes
Original file line number Diff line number Diff line change 26
26
27
27
### 1.26.4
28
28
- [ Bug] 使用Stream.SaveAs時指定excelType會自動關閉Stream #I57WMM
29
+ - [ OPT] 減少在讀取大文件時 _ IntMappingAlphabet.Count 的調用 (#400 via @CollapseNav )
29
30
30
31
### 1.26.3
31
32
- [ OPT] Export 預設 buffersize 從 1024 bytes -> 1024 * 512 bytes
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ public void SaveAs()
39
39
if ( _value == null )
40
40
{
41
41
_writer . Write ( "" ) ;
42
+ this . _writer . Flush ( ) ;
42
43
return ;
43
44
}
44
45
@@ -94,6 +95,7 @@ public void SaveAs()
94
95
if ( keys . Count == 0 && props == null )
95
96
{
96
97
_writer . Write ( newLine ) ;
98
+ this . _writer . Flush ( ) ;
97
99
return ;
98
100
}
99
101
You can’t perform that action at this time.
0 commit comments