mirror of
https://github.com/metrico/qryn.git
synced 2025-03-14 10:07:18 +00:00
@ -71,7 +71,7 @@ function processStream (stream, labels, bulkLabels, bulk, toJSON, fingerPrint) {
|
||||
values.push([
|
||||
finger,
|
||||
ts,
|
||||
(typeof entry.value === 'undefined') ? null : entry.value,
|
||||
(typeof entry.value !== 'number') ? 0 : entry.value,
|
||||
entry.line || '',
|
||||
type === 3 ? bothType : type
|
||||
])
|
||||
@ -98,7 +98,7 @@ function processStream (stream, labels, bulkLabels, bulk, toJSON, fingerPrint) {
|
||||
values.push([
|
||||
finger,
|
||||
BigInt(value[0]),
|
||||
(typeof value[2] === 'undefined') ? null : value[2],
|
||||
(typeof value[2] !== 'number') ? 0 : value[2],
|
||||
value[1] || '',
|
||||
type === 3 ? bothType : type
|
||||
])
|
||||
|
2
test/e2e
2
test/e2e
Submodule test/e2e updated: e016d11ae4...55c595d3f8
Reference in New Issue
Block a user