Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
firstline1
titleData Lake Result - Draft 1
DataLakeResult {
    measureName: string;
    total: number;
    headers: string[];
	groupingTags: string[];
    data: Map<string, any[]>;
}


PropertyDescription
measureNameIndex of the Measurement Series in Data Lake
totalNumber of entries in data map (corresponds to the number of groups)
headersColumn names contained in the query result
groupingTagsColumn names by which was grouped
data

Actual query results

  • key: matches the form "groupingTag = groupingValue"
  • value: row-by-row query result (each row corresponds to one measurement)


Draft 2

Code Block
languagejs
firstline1
titleData Lake Result - Draft 2
DataLakeResult {
    measureName: string;
    total: number;
    headers: string[];
	groupingTags: string[];
    data: Map<string, DataResult>;
}

DataResult {
	total: number;
	rows: any[];
}

...