Skip to content

Commit

Permalink
ydb-platform#32 Support multiple tables under one entity (clean up)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergei Galiamichev committed Dec 27, 2024
1 parent 8b9949c commit 592afad
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ abstract class BatchFindSpliterator<R, T extends Entity<T>, ID extends Entity.Id

protected abstract List<R> find(YqlStatementPart<?> part, YqlStatementPart<?>... otherParts);

BatchFindSpliterator(Class<T> entityType, int batchSize) {
this(entityType, null, batchSize);
}

BatchFindSpliterator(Class<T> entityType, ID partial, int batchSize) {
this.batchSize = batchSize;
this.idSchema = EntityIdSchema.ofEntity(entityType);
Expand Down

0 comments on commit 592afad

Please sign in to comment.