Skip to content

v0.2.0

Latest

Choose a tag to compare

@mpetazzoni mpetazzoni released this 18 Jan 22:24
· 1 commit to main since this release
b7f2578

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 bytes

See the README for more details.