Skip to content

Commit

Permalink
feat: use separate directory for downsampling data
Browse files Browse the repository at this point in the history
  • Loading branch information
bednar committed Sep 19, 2023
1 parent 57217da commit 37399b3
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions examples/basic/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,7 @@ async function main() {
}

// Execute query again as points
const queryPointsResult = client.queryPoints(
query,
database,
queryType
)
const queryPointsResult = client.queryPoints(query, database, queryType)

for await (const row of queryPointsResult) {
console.log(`avg is ${row.getField('avg', 'float')}`)
Expand Down

0 comments on commit 37399b3

Please sign in to comment.