dolphindb 2.0.928 → 2.0.930
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docs.zh.json +92 -45
- package/package.json +3 -3
package/docs.zh.json
CHANGED
|
@@ -8908,6 +8908,11 @@
|
|
|
8908
8908
|
" $ a=char(99);",
|
|
8909
8909
|
" $ a;",
|
|
8910
8910
|
" 'c'",
|
|
8911
|
+
" $ a=char(\"99\"); //char 函数会把输入的字符串识别为 ASCII 码,超出 ASCII 码范围的输入字符无法转换",
|
|
8912
|
+
" $ a;",
|
|
8913
|
+
" 'c'",
|
|
8914
|
+
" $ char(\"990\"); ",
|
|
8915
|
+
" Failed to convert the string to CHAR'",
|
|
8911
8916
|
" $ typestr a;",
|
|
8912
8917
|
" CHAR",
|
|
8913
8918
|
" $ char(a+5);",
|
|
@@ -14833,7 +14838,7 @@
|
|
|
14833
14838
|
"* 对于SHORT, INT, LONG 与时间或日期类型数据,建议采用 delta 算法压缩。",
|
|
14834
14839
|
"* 将字符串存储为 SYMBOL 类型数据,实现对字符串类型的压缩。",
|
|
14835
14840
|
"",
|
|
14836
|
-
"`sortColumns` 字符串标量或向量,用于指定表的排序列,写入的数据将按 *sortColumns* 进行排序。系统默认 *sortColumns
|
|
14841
|
+
"`sortColumns` 字符串标量或向量,用于指定表的排序列,写入的数据将按 *sortColumns* 进行排序。系统默认 *sortColumns* (指定多列时) 最后一列为时间列,其余列字段作为排序的索引列,称作 sort key。同一个 sort key 组合值(sort key entry)对应的数据将按时间列顺序连续存放在一起。查询时,若查询条件包含索引列,可以快速定位数据所在的数据块位置,提高查询性能。",
|
|
14837
14842
|
"",
|
|
14838
14843
|
"- *sortColumns* 只能是 integer, temporal, string, 或 symbol 类型。",
|
|
14839
14844
|
"",
|
|
@@ -15636,7 +15641,7 @@
|
|
|
15636
15641
|
"* 对于SHORT, INT, LONG 与时间或日期类型数据,建议采用 delta 算法压缩。",
|
|
15637
15642
|
"* 将字符串存储为 SYMBOL 类型数据,实现对字符串类型的压缩。",
|
|
15638
15643
|
"",
|
|
15639
|
-
"`sortColumns` 字符串标量或向量,用于指定表的排序列,写入的数据将按 *sortColumns* 进行排序。系统默认 *sortColumns
|
|
15644
|
+
"`sortColumns` 字符串标量或向量,用于指定表的排序列,写入的数据将按 *sortColumns* 进行排序。系统默认 *sortColumns* (指定多列时) 最后一列为时间列,其余列字段作为排序的索引列,其组合值称作 sort key。若 *sortColumns* 只指定一列,则该列的值将作为 sort key。系统将同一个 sort key 内的数据划分为固定大小的数据块,并在内存中维护一个指向数据块地址的索引。查询时,若查询条件包含索引列,可以快速定位数据所在的数据块位置,提高查询性能。",
|
|
15640
15645
|
"",
|
|
15641
15646
|
"- *sortColumns* 只能是 integer, temporal, string, 或 symbol 类型。",
|
|
15642
15647
|
"",
|
|
@@ -31954,48 +31959,6 @@
|
|
|
31954
31959
|
}
|
|
31955
31960
|
]
|
|
31956
31961
|
},
|
|
31957
|
-
"getCachedSymbolBaseMemSize": {
|
|
31958
|
-
"title": "getCachedSymbolBaseMemSize",
|
|
31959
|
-
"type": "function",
|
|
31960
|
-
"children": [
|
|
31961
|
-
{
|
|
31962
|
-
"title": "语法",
|
|
31963
|
-
"type": "grammer",
|
|
31964
|
-
"children": [
|
|
31965
|
-
{
|
|
31966
|
-
"type": "text",
|
|
31967
|
-
"value": [
|
|
31968
|
-
"getCachedSymbolBaseMemSize()"
|
|
31969
|
-
]
|
|
31970
|
-
}
|
|
31971
|
-
]
|
|
31972
|
-
},
|
|
31973
|
-
{
|
|
31974
|
-
"title": "参数",
|
|
31975
|
-
"type": "parameters",
|
|
31976
|
-
"children": [
|
|
31977
|
-
{
|
|
31978
|
-
"type": "text",
|
|
31979
|
-
"value": [
|
|
31980
|
-
"无"
|
|
31981
|
-
]
|
|
31982
|
-
}
|
|
31983
|
-
]
|
|
31984
|
-
},
|
|
31985
|
-
{
|
|
31986
|
-
"title": "详情",
|
|
31987
|
-
"type": "detail",
|
|
31988
|
-
"children": [
|
|
31989
|
-
{
|
|
31990
|
-
"type": "text",
|
|
31991
|
-
"value": [
|
|
31992
|
-
"获取引擎中 SYMBOL 类型的字典编码的缓存大小,单位是 Bytes。 "
|
|
31993
|
-
]
|
|
31994
|
-
}
|
|
31995
|
-
]
|
|
31996
|
-
}
|
|
31997
|
-
]
|
|
31998
|
-
},
|
|
31999
31962
|
"getChunkPath": {
|
|
32000
31963
|
"title": "getChunkPath",
|
|
32001
31964
|
"type": "function",
|
|
@@ -35169,6 +35132,48 @@
|
|
|
35169
35132
|
}
|
|
35170
35133
|
]
|
|
35171
35134
|
},
|
|
35135
|
+
"getOLAPCachedSymbolBaseMemSize": {
|
|
35136
|
+
"title": "getOLAPCachedSymbolBaseMemSize",
|
|
35137
|
+
"type": "function",
|
|
35138
|
+
"children": [
|
|
35139
|
+
{
|
|
35140
|
+
"title": "语法",
|
|
35141
|
+
"type": "grammer",
|
|
35142
|
+
"children": [
|
|
35143
|
+
{
|
|
35144
|
+
"type": "text",
|
|
35145
|
+
"value": [
|
|
35146
|
+
"getOLAPCachedSymbolBaseMemSize()"
|
|
35147
|
+
]
|
|
35148
|
+
}
|
|
35149
|
+
]
|
|
35150
|
+
},
|
|
35151
|
+
{
|
|
35152
|
+
"title": "参数",
|
|
35153
|
+
"type": "parameters",
|
|
35154
|
+
"children": [
|
|
35155
|
+
{
|
|
35156
|
+
"type": "text",
|
|
35157
|
+
"value": [
|
|
35158
|
+
"无"
|
|
35159
|
+
]
|
|
35160
|
+
}
|
|
35161
|
+
]
|
|
35162
|
+
},
|
|
35163
|
+
{
|
|
35164
|
+
"title": "详情",
|
|
35165
|
+
"type": "detail",
|
|
35166
|
+
"children": [
|
|
35167
|
+
{
|
|
35168
|
+
"type": "text",
|
|
35169
|
+
"value": [
|
|
35170
|
+
"获取 OLAP 引擎中 SYMBOL 类型的字典编码的缓存大小,单位是 Bytes。 "
|
|
35171
|
+
]
|
|
35172
|
+
}
|
|
35173
|
+
]
|
|
35174
|
+
}
|
|
35175
|
+
]
|
|
35176
|
+
},
|
|
35172
35177
|
"getOS": {
|
|
35173
35178
|
"title": "getOS",
|
|
35174
35179
|
"type": "function",
|
|
@@ -37543,6 +37548,48 @@
|
|
|
37543
37548
|
}
|
|
37544
37549
|
]
|
|
37545
37550
|
},
|
|
37551
|
+
"getTSDBCachedSymbolBaseMemSize": {
|
|
37552
|
+
"title": "getTSDBCachedSymbolBaseMemSize",
|
|
37553
|
+
"type": "function",
|
|
37554
|
+
"children": [
|
|
37555
|
+
{
|
|
37556
|
+
"title": "语法",
|
|
37557
|
+
"type": "grammer",
|
|
37558
|
+
"children": [
|
|
37559
|
+
{
|
|
37560
|
+
"type": "text",
|
|
37561
|
+
"value": [
|
|
37562
|
+
"getOLAPCachedSymbolBaseMemSize()"
|
|
37563
|
+
]
|
|
37564
|
+
}
|
|
37565
|
+
]
|
|
37566
|
+
},
|
|
37567
|
+
{
|
|
37568
|
+
"title": "参数",
|
|
37569
|
+
"type": "parameters",
|
|
37570
|
+
"children": [
|
|
37571
|
+
{
|
|
37572
|
+
"type": "text",
|
|
37573
|
+
"value": [
|
|
37574
|
+
"无"
|
|
37575
|
+
]
|
|
37576
|
+
}
|
|
37577
|
+
]
|
|
37578
|
+
},
|
|
37579
|
+
{
|
|
37580
|
+
"title": "详情",
|
|
37581
|
+
"type": "detail",
|
|
37582
|
+
"children": [
|
|
37583
|
+
{
|
|
37584
|
+
"type": "text",
|
|
37585
|
+
"value": [
|
|
37586
|
+
"获取 TSDB 引擎中 SYMBOL 类型的字典编码的缓存大小,单位是 Bytes。 "
|
|
37587
|
+
]
|
|
37588
|
+
}
|
|
37589
|
+
]
|
|
37590
|
+
}
|
|
37591
|
+
]
|
|
37592
|
+
},
|
|
37546
37593
|
"getTSDBCompactionTaskStatus": {
|
|
37547
37594
|
"title": "getTSDBCompactionTaskStatus",
|
|
37548
37595
|
"type": "function",
|
|
@@ -53232,7 +53279,7 @@
|
|
|
53232
53279
|
{
|
|
53233
53280
|
"type": "text",
|
|
53234
53281
|
"value": [
|
|
53235
|
-
"对于输入的多个 *args*,将它们的值组合为一个 BLOB 标量或向量。相较于 makeKey,
|
|
53282
|
+
"对于输入的多个 *args*,将它们的值组合为一个 BLOB 标量或向量。相较于 makeKey,makeSortedKey 内部会保存组合值的排序结果,但输出结果与 makeKey 相同。"
|
|
53236
53283
|
]
|
|
53237
53284
|
}
|
|
53238
53285
|
]
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dolphindb",
|
|
3
3
|
"description": "DolphinDB JavaScript API",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.930",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.js",
|
|
7
7
|
"browser": "./browser.js",
|
|
@@ -29,14 +29,14 @@
|
|
|
29
29
|
"JavaScript"
|
|
30
30
|
],
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@types/node": "^18.
|
|
32
|
+
"@types/node": "^18.14.0",
|
|
33
33
|
"typescript": "^4.9.5"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"dayjs": "^1.11.7",
|
|
37
37
|
"ipaddr.js": "^2.0.1",
|
|
38
38
|
"tslib": "^2.5.0",
|
|
39
|
-
"xshell": "^1.0.
|
|
39
|
+
"xshell": "^1.0.10"
|
|
40
40
|
},
|
|
41
41
|
"scripts": {
|
|
42
42
|
"build": "tsc",
|