deno.land / x / pg_mem@2.8.1 / transforms / restrictive-index.ts

restrictive-index.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import { _IIndex, IValue, IndexExpression, _Transaction, IndexKey, _Explainer, _IndexExplanation, IndexOp, _ISelection, Stats } from '../interfaces-private.ts';
export class RestrictiveIndex<T> implements _IIndex<T> { constructor(private base: _IIndex<T>, readonly filter: _ISelection<T>) { }
private match(raw: T, t: _Transaction) { return this.filter.hasItem(raw, t); }
get expressions(): IndexExpression[] { return this.base.expressions; }
stats(t: _Transaction, key?: IndexKey): Stats | null { // cannot comput without iterating return null; }
iterateKeys() { // cannot comput without iterating // (we know underlying keys, but we dont know which have items that match our filter) return null; }
eqFirst(rawKey: IndexKey, t: _Transaction) { for (const i of this.base.enumerate({ key: rawKey, t: t, type: 'eq', })) { if (this.match(i, t)) { return i; } } return null; }

entropy(t: IndexOp): number { return this.base.entropy(t); }
*enumerate(op: IndexOp): Iterable<T> { for (const i of this.base.enumerate(op)) { if (this.match(i, op.t)) { yield i; } } }
explain(e: _Explainer): _IndexExplanation { return { _: 'indexRestriction', lookup: this.base.explain(e), for: this.filter.explain(e), // criteria: this.restrict.explain(e), } }}
pg_mem

Version Info

Tagged at
4 months ago