Skip to content

v0.2.1

Compare
Choose a tag to compare
@greyscaled greyscaled released this 17 Jul 18:15
· 260 commits to main since this release
v0.2.1
6ff578b

Highlights

  • Python bindings:

    • You can now query intermediate results, simply referencing a variable:
      intermediate = con.sql("select * from tbl where a > 2;")
      con.sql("select * from intermediate where b > 4;")
    • show() was added to print results without other libraries
  • SQL commands:

    • COPY TO:
      • Add support for remote URLs, including GCS and S3. For more information, see #1280
      • Tables can now be copied with COPY TO (instead of only queries). For more information see #1280
  • SQL functions:

    • All functions received support for passing in identifiers and named arguments. For more information, see #1314
    • csv_scan:
      • Add support for GCS and S3 with credentials
    • ndjson_scan:
      • Add support for GCS and S3 with credentials
    • parquet_scan:
      • Add support for GCS and S3 with credentials
    • generate_series:
      • Added support for floats
  • Recipes:

What's Changed

New Contributors

Full Changelog: v0.2.0...v0.2.1