Skip to content

Commit 67b112e

Browse files
committed
Some editing and language
1 parent 8c428e6 commit 67b112e

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

src/content/blog/september-2025.mdx

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,25 @@ Development keeps moving quickly, with many new features and improvements of the
1414

1515
## Core
1616

17-
1. We've published an [RFC](https://github.com/vortex-data/vortex/pull/4726) presenting our planned changes to how arrays and compute interact with each other, introducing what we call Operators.
18-
1. We merged a few big changes to the IO APIs ([#4557](https://github.com/vortex-data/vortex/pull/4608), [#4608](https://github.com/vortex-data/vortex/pull/4608)), which introduce new push-based write API (in addition to the existing stream-based one), and writes now return both the file's footer (which can now be cached, reused and even de/serialized [#4598](https://github.com/vortex-data/vortex/pull/4608)), and the file's total compressed size.
19-
1. We've added a new encoding - [fastlanes](https://github.com/spiraldb/fastlanes)-based RLE [#4588](https://github.com/vortex-data/vortex/pull/4588).
17+
1. Published an [RFC](https://github.com/vortex-data/vortex/pull/4726) presenting our planned changes to how arrays and compute interact with each other, introducing what we call Operators.
18+
1. Merged a few big changes to the IO APIs ([#4557](https://github.com/vortex-data/vortex/pull/4608), [#4608](https://github.com/vortex-data/vortex/pull/4608)), which introduce new push-based write API (in addition to the existing stream-based one), and writes now return both the file's footer (which can now be cached, reused and even de/serialized [#4598](https://github.com/vortex-data/vortex/pull/4608)), and the file's total compressed size.
19+
1. Added a new encoding - [fastlanes](https://github.com/spiraldb/fastlanes)-based RLE [#4588](https://github.com/vortex-data/vortex/pull/4588).
2020
1. The work on the new `FixedSizeList` keeps moving forward - [#4590](https://github.com/vortex-data/vortex/pull/4590), [#4601](https://github.com/vortex-data/vortex/pull/4601).
21-
1. We've added a new canonical encoding for list types, see the [tracking issue](https://github.com/vortex-data/vortex/issues/4699) for full details and work.
22-
1. We've fixed a long-standing issue where we used to underestimate the uncompressed size of arrays, causing inaccurate array stats and a consistent underestimation of the overall data size. [#4963](https://github.com/vortex-data/vortex/pull/4693).
21+
1. Added a new canonical encoding for list types, see the [tracking issue](https://github.com/vortex-data/vortex/issues/4699) for full details and work.
22+
1. Fixed a long-standing issue where we used to underestimate the uncompressed size of arrays, causing inaccurate array stats and a consistent underestimation of the overall data size. [#4963](https://github.com/vortex-data/vortex/pull/4693).
2323

2424
## Integrations
2525

2626
### DuckDB
2727

28-
1. We've both updated our DuckDB binding to support the most recent release ([1.4 - Andium](https://duckdb.org/2025/09/16/announcing-duckdb-140.html)) [#4667](https://github.com/vortex-data/vortex/pull/4667).
29-
1. We've improved the testing of our DuckDB extension, making it easier and faster to run tests, using a debug build of DuckDB.
28+
1. Landed a release of the Vortex extension for the most recent DuckDB release (1.4). As always, you can install and load the extension with:
29+
30+
```sql
31+
INSTALL vortex FROM community;
32+
LOAD vortex;
33+
```
34+
35+
1. Improved the testing of our DuckDB extension, making it easier and faster to run tests, using a debug build of DuckDB.
3036

3137
### Apache DataFusion
3238

0 commit comments

Comments
 (0)