File tree 4 files changed +7
-3
lines changed
4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 13
13
14
14
15
15
## Version Feature Updates
16
+ - Version: 5.5.1
17
+ - Bug fix in _ parseSearchHit function.
16
18
- Version: 5.5.0
17
19
- Search: GroupByDateHistogram
18
20
- GroupByHistogram Support Offset Parameter
Original file line number Diff line number Diff line change 13
13
14
14
15
15
## 版本特性
16
+ - 版本: 5.5.1
17
+ - Bug fix in _ parseSearchHit function.
16
18
- 版本: 5.5.0
17
19
- Search 新增:GroupByDateHistogram 功能
18
20
- GroupByHistogram 支持 offset 参数
Original file line number Diff line number Diff line change @@ -288,8 +288,8 @@ TableStore.decoder = {
288
288
if ( response . rows . length !== response . searchHits . length && response . searchHits . length !== 0 ) {
289
289
console . log ( "the row count is not equal to search extra result item count in server response body, ignore the search extra result items." ) ;
290
290
} else {
291
- for ( var i in response . searchHits ) {
292
- result . searchHits . push ( TableStore . decoder . _parseSearchHit ( response . searchHits [ i ] , response . rows [ i ] ) ) ;
291
+ for ( let i in response . searchHits ) {
292
+ result . searchHits . push ( TableStore . decoder . _parseSearchHit ( response . searchHits [ i ] , rows [ i ] ) ) ;
293
293
}
294
294
}
295
295
if ( response . consumed ) {
Original file line number Diff line number Diff line change 2
2
"name" : " tablestore" ,
3
3
"main" : " index.js" ,
4
4
"description" : " TableStore SDK for JavaScript" ,
5
- "version" : " 5.5.0 " ,
5
+ "version" : " 5.5.1 " ,
6
6
"devDependencies" : {
7
7
"mocha" : " ^3.2.0" ,
8
8
"coveralls" : " ^2.13.1" ,
You can’t perform that action at this time.
0 commit comments