Skip to content
This repository was archived by the owner on Nov 11, 2022. It is now read-only.

Makes cachedSplitResult transient in BigQuerySourceBase #565

Merged
merged 1 commit into from
Apr 21, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1211,7 +1211,7 @@ private abstract static class BigQuerySourceBase extends BoundedSource<TableRow>
protected final BigQueryServices bqServices;
protected final ValueProvider<String> executingProject;

private List<BoundedSource<TableRow>> cachedSplitResult;
private transient List<BoundedSource<TableRow>> cachedSplitResult;

private BigQuerySourceBase(
String jobIdToken,
Expand Down