File tree Expand file tree Collapse file tree 2 files changed +899
-967
lines changed
packages/db/src/collection Expand file tree Collapse file tree 2 files changed +899
-967
lines changed Original file line number Diff line number Diff line change 1
1
import { ensureIndexForExpression } from "../indexes/auto-index.js"
2
2
import { and , gt , lt } from "../query/index.js"
3
+ import { Value } from "../query/ir.js"
3
4
import {
4
5
createFilterFunctionFromExpression ,
5
6
createFilteredCallback ,
6
7
} from "./change-events.js"
7
- import { Value , type BasicExpression , type OrderBy } from "../query/ir.js"
8
+ import type { BasicExpression , OrderBy } from "../query/ir.js"
8
9
import type { BaseIndex } from "../indexes/base-index.js"
9
10
import type { ChangeMessage } from "../types.js"
10
11
import type { CollectionImpl } from "./index.js"
@@ -153,7 +154,6 @@ export class CollectionSubscription {
153
154
limit,
154
155
minValue,
155
156
} : RequestLimitedSnapshotOptions ) {
156
- console . log ( "in requestLimitedSnapshot" )
157
157
if ( ! limit ) throw new Error ( `limit is required` )
158
158
159
159
if ( ! this . orderByIndex ) {
You can’t perform that action at this time.
0 commit comments