Skip to content
This repository was archived by the owner on Feb 16, 2022. It is now read-only.
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
4 changes: 2 additions & 2 deletions src/main/java/io/druid/embedded/IndexHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ public int columnCacheSizeBytes() {
* The only way to get a QueryableIndex from IncrementalIndex is to persist the IncrementalIndex
* and reload it. This methods does that.
*
* @param loader
* @param aggregates
* @param loader : Loader object
* @param indexSchema : IncrementalIndexSchema object
* @return
* @throws IOException
*/
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/druid/embedded/load/impl/CSVLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class CSVLoader extends Loader {
/**
* @param reader : Reader object pointing to CSV file
* @param columns : List of all columns in CSV file (including metric and "value" column)
* @param columns2 : List of dimensions (Excluding metric and value columns)
* @param dims : List of dimensions (Excluding metric and value columns)
* @param timestampDimension : Dimension which indicates timestamp field in CSV File.
*/
public CSVLoader(Reader reader, List<String> columns, List<String> dims, String timestampDimension) {
Expand Down