update readme #50
Annotations
23 errors
|
Lint:
packages/tdbsp/src/functions/streams/graph/exec.ts#L1
'Schema' is defined but never used. Allowed unused vars must match /^_/u
|
|
Lint:
packages/tdbsp/src/functions/streams/graph/exec.ts#L1
'Queue' is defined but never used. Allowed unused vars must match /^_/u
|
|
Lint:
packages/tdbsp/src/functions/streams/graph/exec.ts#L1
'Option' is defined but never used. Allowed unused vars must match /^_/u
|
|
Lint:
packages/tdbsp/src/functions/streams/graph/exec.ts#L1
'Console' is defined but never used. Allowed unused vars must match /^_/u
|
|
Lint:
packages/tdbsp/src/functions/streams/graph/examples/recursive_semi_naive_query.ts#L27
'ring' is defined but never used. Allowed unused args must match /^_/u
|
|
Lint:
packages/tdbsp/src/functions/streams/graph/examples/recursive_query.ts#L29
'ring' is defined but never used. Allowed unused args must match /^_/u
|
|
Lint:
packages/tdbsp/src/functions/streams/graph/examples/recursive_query.ts#L7
'fixPoint' is defined but never used. Allowed unused vars must match /^_/u
|
|
Lint:
packages/tdbsp/src/functions/streams/graph/examples/recursive_query.ts#L2
'children' is defined but never used. Allowed unused vars must match /^_/u
|
|
Lint:
packages/tdbsp/src/data/streams/app_inputs.ts#L78
'd' is assigned a value but never used. Allowed unused vars must match /^_/u
|
|
Lint:
packages/tdbsp/src/data/streams/app_inputs.ts#L27
'b' is assigned a value but never used. Allowed unused vars must match /^_/u
|
|
Build
Process completed with exit code 1.
|
|
Types:
packages/tdbsp/src/functions/streams/graph/examples/recursive_query.ts#L45
Type 'Stream<IZSet<K, { readonly s: number; readonly t: number; }, W>, NoSuchElementException, never>' is not assignable to type 'Stream<IZSet<K, { readonly s: number; readonly t: number; }, W>, never, never>' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the types of the target's properties.
|
|
Types:
packages/tdbsp/src/functions/streams/graph/examples/recursive_query.ts#L21
'Schema' cannot be used as a value because it was imported using 'import type'.
|
|
Types:
packages/tdbsp/src/functions/streams/graph/examples/recursive_query.ts#L15
'Schema' cannot be used as a value because it was imported using 'import type'.
|
|
Types:
packages/tdbsp/src/functions/streams/graph/examples/recursive_query.ts#L7
'fixPoint' is declared but its value is never read.
|
|
Types:
packages/tdbsp/src/functions/streams/graph/examples/recursive_query.ts#L2
'children' is declared but its value is never read.
|
|
Types:
packages/tdbsp/src/functions/streams/graph/examples/cycle_tree.ts#L43
Type 'Stream<IZSet<K, T, W>, NoSuchElementException, never>' is not assignable to type 'Stream<IZSet<K, T, W>, never, never>' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the types of the target's properties.
|
|
Types:
packages/tdbsp/src/functions/streams/graph/bracket.ts#L15
Type '[] | [Node<K, D, W>] | [Node<any, D, W>] | [Node<K, any, W>] | [Node<K, D, W>, Node<K, D, W>] | [Node<...>, Node<...>]' is not assignable to type '[Node<K, D, W>]'.
|
|
Types:
packages/tdbsp/src/functions/streams/graph/bracket.ts#L10
Type '[] | [Node<K, D, W>] | [Node<any, D, W>] | [Node<K, any, W>] | [Node<K, D, W>, Node<K, D, W>] | [Node<...>, Node<...>]' is not assignable to type '[Node<K, D, W>]'.
|
|
Types:
packages/tdbsp/src/data/streams/app_inputs.ts#L78
'd' is declared but its value is never read.
|
|
Types:
packages/tdbsp/src/data/streams/app_inputs.ts#L27
'b' is declared but its value is never read.
|
|
Test
Process completed with exit code 1.
|
|
test/graph/recursive-query.test.ts > recursive query transitive closure > basic:
packages/tdbsp/test/graph/recursive-query.test.ts#L153
AssertionError: expected [ '0[object Object][object Object]' ] to strictly equal [ …(2) ]
- Expected
+ Received
[
- {
- "_tag": "IZSet",
- "index": {
- "_id": "HashMap",
- "values": [
- [
- 0,
- {
- "_id": "HashMap",
- "values": [
- [
- {
- "s": 0,
- "t": 2,
- },
- 1,
- ],
- [
- {
- "s": 1,
- "t": 2,
- },
- 1,
- ],
- [
- {
- "s": 0,
- "t": 1,
- },
- 1,
- ],
- ],
- },
- ],
- ],
- },
- Symbol(Symbol.iterator): [Function [Symbol.iterator]],
- },
- {
- "_tag": "IZSet",
- "index": {
- "_id": "HashMap",
- "values": [
- [
- 0,
- {
- "_id": "HashMap",
- "values": [
- [
- {
- "s": 0,
- "t": 2,
- },
- 1,
- ],
- [
- {
- "s": 1,
- "t": 3,
- },
- 1,
- ],
- [
- {
- "s": 0,
- "t": 3,
- },
- 1,
- ],
- [
- {
- "s": 1,
- "t": 2,
- },
- 1,
- ],
- [
- {
- "s": 0,
- "t": 1,
- },
- 1,
- ],
- ],
- },
- ],
- ],
- },
- Symbol(Symbol.iterator): [Function [Symbol.iterator]],
- },
+ "0[object Object][object Object]",
]
❯ next test/graph/recursive-query.test.ts:153:22
|