Skip to content
Open
Show file tree
Hide file tree
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 @@ -116,6 +116,8 @@ private Table createTable(Source source) {
return new CsvScannableTable(source, null);
case FILTERABLE:
return new CsvFilterableTable(source, null);
case STREAMABLE_SCANNABLE:
return new CsvStreamScannableTable(source, null);
default:
throw new AssertionError("Unknown flavor " + this.flavor);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,6 @@ protected boolean isStream() {

/** Various degrees of table "intelligence". */
public enum Flavor {
SCANNABLE, FILTERABLE, TRANSLATABLE
SCANNABLE, FILTERABLE, TRANSLATABLE, STREAMABLE_SCANNABLE
}
}
Loading