dolphindb 2.0.976 → 2.0.977
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/browser.js +2 -2
- package/browser.js.map +1 -1
- package/package.json +1 -1
- package/test.d.ts +1 -1
- package/test.js +1 -1
- package/test.js.map +1 -1
package/browser.js
CHANGED
|
@@ -1284,7 +1284,7 @@ export function format(type, value, le, options = {}) {
|
|
|
1284
1284
|
return colors ? green(str) : str;
|
|
1285
1285
|
}
|
|
1286
1286
|
case DdbType.date:
|
|
1287
|
-
if (value === null || value === nulls.
|
|
1287
|
+
if (value === null || value === nulls.int32)
|
|
1288
1288
|
return get_nullstr();
|
|
1289
1289
|
else {
|
|
1290
1290
|
const str = date2str(value);
|
|
@@ -1305,7 +1305,7 @@ export function format(type, value, le, options = {}) {
|
|
|
1305
1305
|
return colors ? magenta(str) : str;
|
|
1306
1306
|
}
|
|
1307
1307
|
case DdbType.minute:
|
|
1308
|
-
if (value === null || value === nulls.
|
|
1308
|
+
if (value === null || value === nulls.int32)
|
|
1309
1309
|
return get_nullstr();
|
|
1310
1310
|
else {
|
|
1311
1311
|
const str = minute2str(value);
|