(tableId: string)
| 38 | * the previous batch's last key forward so no per-batch max scan is needed. |
| 39 | */ |
| 40 | export async function nextImportStartOrderKey(tableId: string): Promise<string | null> { |
| 41 | return maxOrderKey(db, tableId) |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * Serializes writers that assign `position` for the same table. The row-count |
no test coverage detected