Skip to content

Commit 8f0d3d3

Browse files
authored
fix(getRange): nextStartPrimaryKey type incorrect (#9)
Signed-off-by: Kevin Cui <bh@bugs.cc>
1 parent c1ebe60 commit 8f0d3d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/operator/get-range.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export interface GetRangeData {
2828
export interface GetRangeResponse {
2929
consumed: ConsumedCapacity;
3030
rows: Array<PlainBufferRow> | null;
31-
nextStartPrimaryKey: PlainBufferRow | null;
31+
nextStartPrimaryKey: Array<PlainBufferRow> | null;
3232
}
3333

3434
export class GetRange {

0 commit comments

Comments
 (0)