We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f812f2 commit fa3d54cCopy full SHA for fa3d54c
README.md
@@ -50,9 +50,12 @@ import { BoilingData } from "@boilingdata/node-boilingdata";
50
async function main() {
51
const bdInstance = new BoilingData({ username: process.env["BD_USERNAME"], password: process.env["BD_PASSWORD"] });
52
await bdInstance.connect();
53
+ const start = Date.now();
54
const sql = `SELECT COUNT(*) FROM parquet_scan('s3://boilingdata-demo/demo.parquet');`;
55
const rows = await bdInstance.execQueryPromise({ sql });
56
+ const stop = Date.now();
57
console.log(JSON.parse(JSON.stringify(rows)));
58
+ console.log("Query time measured from this script (ms):", stop - start);
59
await bdInstance.close();
60
}
61
0 commit comments