What's New
- Add support for storing query results to cloud storage with presigned URL download
Usage
WherobotsStatement wstmt = stmt.unwrap(WherobotsStatement.class);
wstmt.setStore(Store.forDownload());
wstmt.execute("SELECT * FROM my_table");
StoreResult result = wstmt.getStoreResult();
// result.resultUri() -> presigned S3 URL
// result.size() -> file size in bytesSee the README for more details.